diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 2000-12-06 20:02:02 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2000-12-06 12:02:02 -0800 |
commit | 46142b263c1fe3bc13d9bf0d802ffcfe023285f8 (patch) | |
tree | 3474271b5e1e8277a752daccc62fa9affaff1977 /gcc | |
parent | c7303e411e27224a555ee8fae64bb421c26425cf (diff) | |
download | gcc-46142b263c1fe3bc13d9bf0d802ffcfe023285f8.zip gcc-46142b263c1fe3bc13d9bf0d802ffcfe023285f8.tar.gz gcc-46142b263c1fe3bc13d9bf0d802ffcfe023285f8.tar.bz2 |
parse.y (end_artificial_method_body): Fixed typo.
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/java/parse.y | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 895f618..9ca56a3 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -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 diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 249dcfd..9283e57 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 (); } |