diff options
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c index 8a67c67..681887f 100644 --- a/gcc/c-semantics.c +++ b/gcc/c-semantics.c @@ -297,12 +297,12 @@ build_continue_stmt (void) return (build_stmt (CONTINUE_STMT)); } -/* Create a CASE_LABEL tree node and return it. */ +/* Create a CASE_LABEL_EXPR tree node and return it. */ tree build_case_label (tree low_value, tree high_value, tree label_decl) { - return build_stmt (CASE_LABEL, low_value, high_value, label_decl); + return build_stmt (CASE_LABEL_EXPR, low_value, high_value, label_decl); } /* We're about to expand T, a statement. Set up appropriate context |