diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-05-29 23:07:29 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-05-29 23:07:29 +0000 |
commit | b643d53db6528cf4ef954ddcdd98acee9c656142 (patch) | |
tree | cd9a59e23535aebc0e85cfd8f72b86c570c9f116 /gcc/tree.def | |
parent | 3cfa49098550a820953255bb91423b5857af9b37 (diff) | |
download | gcc-b643d53db6528cf4ef954ddcdd98acee9c656142.tar.gz |
fix typo, target expr's have 4 fields now, not three.
From-SVN: r12124
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index 2b7088351f2..efd0af3543a 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -409,7 +409,7 @@ DEFTREECODE (INIT_EXPR, "init_expr", "e", 2) and operand 2 is the cleanup for this node, if any. and operand 3 is the saved initializer after this node has been expanded once, this is so we can re-expand the tree later. */ -DEFTREECODE (TARGET_EXPR, "target_expr", "e", 3) +DEFTREECODE (TARGET_EXPR, "target_expr", "e", 4) /* Conditional expression ( ... ? ... : ... in C). Operand 0 is the condition. |