]> gcc.gnu.org Git - gcc.git/commitdiff
(TRUTH_{AND,OR,XOR}_EXPR): Make code class be 'e' like the rest of the
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 26 Jun 1993 15:04:22 +0000 (11:04 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 26 Jun 1993 15:04:22 +0000 (11:04 -0400)
truth operations.

From-SVN: r4745

gcc/tree.def

index 9bc81e7ad44c7f80c2bba2905727bae73f21ed35..b30a9e4af537f338a1c97c051e665a14e5acb7b7 100644 (file)
@@ -1,6 +1,6 @@
 /* This file contains the definitions and documentation for the
    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.
 
@@ -530,9 +530,9 @@ DEFTREECODE (BIT_NOT_EXPR, "bit_not_expr", "1", 1)
    operand whether its value is needed or not (for side effects).  */
 DEFTREECODE (TRUTH_ANDIF_EXPR, "truth_andif_expr", "e", 2)
 DEFTREECODE (TRUTH_ORIF_EXPR, "truth_orif_expr", "e", 2)
-DEFTREECODE (TRUTH_AND_EXPR, "truth_and_expr", "2", 2)
-DEFTREECODE (TRUTH_OR_EXPR, "truth_or_expr", "2", 2)
-DEFTREECODE (TRUTH_XOR_EXPR, "truth_xor_expr", "2", 2)
+DEFTREECODE (TRUTH_AND_EXPR, "truth_and_expr", "e", 2)
+DEFTREECODE (TRUTH_OR_EXPR, "truth_or_expr", "e", 2)
+DEFTREECODE (TRUTH_XOR_EXPR, "truth_xor_expr", "e", 2)
 DEFTREECODE (TRUTH_NOT_EXPR, "truth_not_expr", "e", 1)
 
 /* Relational operators.
This page took 0.061225 seconds and 5 git commands to generate.