From 31df1757eb49f54aaf5f484b3f6e96049dd86d54 Mon Sep 17 00:00:00 2001 From: apbianco Date: Wed, 6 Dec 2000 20:02:02 +0000 Subject: [PATCH] 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) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38071 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/java/ChangeLog | 4 ++++ gcc/java/parse.y | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 (); } -- 2.11.4.GIT