]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
parse.y (end_artificial_method_body): Fixed typo.
authorAlexandre Petit-Bianco <apbianco@cygnus.com>
Wed, 6 Dec 2000 20:02:02 +0000 (20:02 +0000)
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>
Wed, 6 Dec 2000 20:02:02 +0000 (12:02 -0800)
2000-12-06  Alexandre Petit-Bianco  <apbianco@cygnus.com>

        * parse.y (end_artificial_method_body): Fixed typo.

(http://gcc.gnu.org/ml/gcc-patches/2000-12/msg00320.html)

From-SVN: r38071

gcc/java/ChangeLog
gcc/java/parse.y

index 895f618eb24599160b091de099949e3faae89f54..9ca56a33576bd69cfb4c186a746d8c36130872e8 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-06  Alexandre Petit-Bianco  <apbianco@cygnus.com>
+
+       * parse.y (end_artificial_method_body): Fixed typo.
+
 2000-12-04  Alexandre Petit-Bianco  <apbianco@cygnus.com>
 
        * parse.y (patch_method_invocation): Pick the correct enclosing
index 249dcfd9e5ee31645df9598f6db634a14d348ed1..9283e575d71382f0ffd54c630455a84ecd844d78 100644 (file)
@@ -7200,7 +7200,7 @@ static void
 end_artificial_method_body (mdecl)
      tree mdecl;
 {
-  BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (mdecl)) = exit_blcok ();
+  BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (mdecl)) = exit_block ();
   exit_block ();
 }