Commit e9b3df31 by Richard Kenner

(TRUTH_{AND,OR,XOR}_EXPR): Make code class be 'e' like the rest of the

truth operations.

From-SVN: r4745
parent 8ffd69e4
/* This file contains the definitions and documentation for the /* This file contains the definitions and documentation for the
tree codes used in the GNU C compiler. tree codes used in the GNU C compiler.
Copyright (C) 1987, 1988 Free Software Foundation, Inc. Copyright (C) 1987, 1988, 1993 Free Software Foundation, Inc.
This file is part of GNU CC. This file is part of GNU CC.
...@@ -530,9 +530,9 @@ DEFTREECODE (BIT_NOT_EXPR, "bit_not_expr", "1", 1) ...@@ -530,9 +530,9 @@ DEFTREECODE (BIT_NOT_EXPR, "bit_not_expr", "1", 1)
operand whether its value is needed or not (for side effects). */ operand whether its value is needed or not (for side effects). */
DEFTREECODE (TRUTH_ANDIF_EXPR, "truth_andif_expr", "e", 2) DEFTREECODE (TRUTH_ANDIF_EXPR, "truth_andif_expr", "e", 2)
DEFTREECODE (TRUTH_ORIF_EXPR, "truth_orif_expr", "e", 2) DEFTREECODE (TRUTH_ORIF_EXPR, "truth_orif_expr", "e", 2)
DEFTREECODE (TRUTH_AND_EXPR, "truth_and_expr", "2", 2) DEFTREECODE (TRUTH_AND_EXPR, "truth_and_expr", "e", 2)
DEFTREECODE (TRUTH_OR_EXPR, "truth_or_expr", "2", 2) DEFTREECODE (TRUTH_OR_EXPR, "truth_or_expr", "e", 2)
DEFTREECODE (TRUTH_XOR_EXPR, "truth_xor_expr", "2", 2) DEFTREECODE (TRUTH_XOR_EXPR, "truth_xor_expr", "e", 2)
DEFTREECODE (TRUTH_NOT_EXPR, "truth_not_expr", "e", 1) DEFTREECODE (TRUTH_NOT_EXPR, "truth_not_expr", "e", 1)
/* Relational operators. /* Relational operators.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment