diff options
Diffstat (limited to 'gcc/c-common.def')
-rw-r--r-- | gcc/c-common.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.def b/gcc/c-common.def index 3486a4c1d88..b262dd76385 100644 --- a/gcc/c-common.def +++ b/gcc/c-common.def @@ -95,8 +95,8 @@ DEFTREECODE (SCOPE_STMT, "scope_stmt", 'e', 1) /* Used to represent a CASE_LABEL. The operands are CASE_LOW and CASE_HIGH, respectively. If CASE_LOW is NULL_TREE, the label is a 'default' label. If CASE_HIGH is NULL_TREE, the label is a normal case - label. */ -DEFTREECODE (CASE_LABEL, "case_label", 'e', 2) + label. The CASE_LABEL_DECL is a LABEL_DECL for this node. */ +DEFTREECODE (CASE_LABEL, "case_label", 'e', 3) /* A STMT_EXPR represents a statement-expression. The STMT_EXPR_STMT is the statement given by the expression. */ |