tree.def (vec_cond_expr): Fix.
authorAndrew Pinski <pinskia@physics.uc.edu>
Tue, 28 Sep 2004 13:14:28 +0000 (13:14 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Tue, 28 Sep 2004 13:14:28 +0000 (06:14 -0700)
2004-09-28  Andrew Pinski  <pinskia@physics.uc.edu>

        * tree.def (vec_cond_expr): Fix. Change 'e'
        to tcc_expression.

From-SVN: r88231

gcc/ChangeLog
gcc/tree.def

index cf45b78..cfe0b00 100644 (file)
@@ -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.
index 4c1f986..11469b1 100644 (file)
@@ -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.