This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[PATCH] Java: Fix to PR #14.


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);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]