aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>2000-12-06 20:02:02 +0000
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>2000-12-06 12:02:02 -0800
commit46142b263c1fe3bc13d9bf0d802ffcfe023285f8 (patch)
tree3474271b5e1e8277a752daccc62fa9affaff1977 /gcc/java
parentc7303e411e27224a555ee8fae64bb421c26425cf (diff)
downloadgcc-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/java')
-rw-r--r--gcc/java/ChangeLog4
-rw-r--r--gcc/java/parse.y2
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 ();
}