]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* check-init.c (check_init): Fix CLEANUP_POINT_EXPR typo.
authorRichard Henderson <rth@cygnus.com>
Fri, 29 Jan 1999 16:48:14 +0000 (08:48 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 29 Jan 1999 16:48:14 +0000 (08:48 -0800)
From-SVN: r24909

gcc/java/ChangeLog
gcc/java/check-init.c

index 370a37c364589ce15bacb8ea6e044edcdc0d7cf8..b0add245042fbca3cd1385bd6fe20572f8a2f9e7 100644 (file)
@@ -1,3 +1,7 @@
+Fri Jan 29 16:51:56 1999  Richard Henderson  <rth@cygnus.com>
+
+       * check-init.c (check_init): Fix CLEANUP_POINT_EXPR typo.
+
 1999-01-29  Tom Tromey  <tromey@cygnus.com>
 
        * parse.h (BUILD_APPEND): If ARG is a non-String object reference,
index 5cc6ec8620a0eaa1b991e5e71c6edbf4a7c4b32a..acd63c101ea44ee81709337fbc71058a8d764f1d 100644 (file)
@@ -530,7 +530,7 @@ check_init (exp, before)
       {
        struct alternatives *alt = alternatives;        
 #ifdef ENABLE_CHECKING
-       if (TREE_CODE (alt->block) != CLEANUP_POIN_EXPR)
+       if (TREE_CODE (alt->block) != CLEANUP_POINT_EXPR)
          fatal ("internal error in check-init:  WITH_CLEANUP_EXPR not in CLEANUP_POINT_EXPR");
 #endif
        check_init (TREE_OPERAND (exp, 0), before);