From 315119c9e9af830ea4624634e496136cad44d4e9 Mon Sep 17 00:00:00 2001 From: froydnj Date: Tue, 10 May 2011 19:52:39 +0000 Subject: make CASE_LABEL_EXPR not abuse TREE_CHAIN * tree.def (CASE_LABEL_EXPR): Add an operand. * tree.h (CASE_CHAIN): Use TREE_OPERAND instead of TREE_CHAIN. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@173633 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree.def') diff --git a/gcc/tree.def b/gcc/tree.def index eb94ad24593..9c6606d0c9c 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -863,7 +863,7 @@ DEFTREECODE (SWITCH_EXPR, "switch_expr", tcc_statement, 3) 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. CASE_LABEL is the corresponding LABEL_DECL. */ -DEFTREECODE (CASE_LABEL_EXPR, "case_label_expr", tcc_statement, 3) +DEFTREECODE (CASE_LABEL_EXPR, "case_label_expr", tcc_statement, 4) /* Used to represent an inline assembly statement. ASM_STRING returns a STRING_CST for the instruction (e.g., "mov x, y"). ASM_OUTPUTS, -- cgit v1.2.1