This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Java: Fix to PR #14.
- To: egcs-patches at egcs dot cygnus dot com
- Subject: [PATCH] Java: Fix to PR #14.
- From: Alexandre Petit-Bianco <apbianco at cygnus dot com>
- Date: Thu, 22 Jul 1999 12:32:26 -0700
This simple patch has been committed. It fixes the PR #14:
http://sourceware.cygnus.com/ml/java-prs/1999-q3/msg00006.html
./A
Thu Jul 22 12:41:12 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* check-init.c (check_init): Handle MAX_EXPR.
Index: check-init.c
===================================================================
RCS file: /cvs/egcs/egcs/gcc/java/check-init.c,v
retrieving revision 1.12
diff -u -p -r1.12 check-init.c
--- check-init.c 1999/07/07 13:10:55 1.12
+++ check-init.c 1999/07/22 19:28:11
@@ -644,6 +644,7 @@ check_init (exp, before)
case LT_EXPR:
case LE_EXPR:
case MAX_EXPR:
+ case MIN_EXPR:
case ARRAY_REF:
binop:
check_init (TREE_OPERAND (exp, 0), before);