aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree.def2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cf45b78..cfe0b00 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-28 Andrew Pinski <pinskia@physics.uc.edu>
+
+ * tree.def (vec_cond_expr): Fix. Change 'e'
+ to tcc_expression.
+
2004-09-28 Kazu Hirata <kazu@cs.umass.edu>
* basic-block.h: Fix a comment typo.
diff --git a/gcc/tree.def b/gcc/tree.def
index 4c1f986..11469b1 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -474,7 +474,7 @@ DEFTREECODE (COND_EXPR, "cond_expr", tcc_expression, 3)
for (i=0; i<N; i++)
A[i] = X[i] < Y[i] ? B[i] : C[i];
*/
-DEFTREECODE (VEC_COND_EXPR, "vec_cond_expr", 'e', 3)
+DEFTREECODE (VEC_COND_EXPR, "vec_cond_expr", tcc_expression, 3)
/* Declare local variables, including making RTL and allocating space.
BIND_EXPR_VARS is a chain of VAR_DECL nodes for the variables.