From: Alexandre Petit-Bianco Date: Wed, 6 Dec 2000 20:02:02 +0000 (+0000) Subject: parse.y (end_artificial_method_body): Fixed typo. X-Git-Tag: prereleases/libstdc++-2.92~2423 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=46142b263c1fe3bc13d9bf0d802ffcfe023285f8;p=thirdparty%2Fgcc.git parse.y (end_artificial_method_body): Fixed typo. 2000-12-06 Alexandre Petit-Bianco * parse.y (end_artificial_method_body): Fixed typo. (http://gcc.gnu.org/ml/gcc-patches/2000-12/msg00320.html) From-SVN: r38071 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 895f618eb245..9ca56a33576b 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2000-12-06 Alexandre Petit-Bianco + + * parse.y (end_artificial_method_body): Fixed typo. + 2000-12-04 Alexandre Petit-Bianco * parse.y (patch_method_invocation): Pick the correct enclosing diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 249dcfd9e5ee..9283e575d713 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -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 (); }