aboutsummaryrefslogtreecommitdiff
path: root/gcc/ch/expr.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-12-11 15:22:24 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-12-11 15:22:24 +0000
commit509c1e9cf24a513738150f39f9359442c13261b8 (patch)
tree00557640ba653716ebb420d3dd06a6ef1b1d0918 /gcc/ch/expr.c
parent53a12329af305dcbe9b9e0de09ae71c6cfb5ecfc (diff)
downloadgcc-509c1e9cf24a513738150f39f9359442c13261b8.zip
gcc-509c1e9cf24a513738150f39f9359442c13261b8.tar.gz
gcc-509c1e9cf24a513738150f39f9359442c13261b8.tar.bz2
typeck.c (apply_chill_array_layout, [...]): Avoid the use of ANSI string concatenation.
* typeck.c (apply_chill_array_layout, apply_chill_field_layout): Avoid the use of ANSI string concatenation. * expr.c (chill_expand_case_expr): Likewise. From-SVN: r30867
Diffstat (limited to 'gcc/ch/expr.c')
-rw-r--r--gcc/ch/expr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ch/expr.c b/gcc/ch/expr.c
index e68f3a0..89ff573 100644
--- a/gcc/ch/expr.c
+++ b/gcc/ch/expr.c
@@ -211,8 +211,7 @@ chill_expand_case_expr (expr)
chill_handle_case_label (TREE_VALUE (label), selector);
labels = TREE_CHAIN (labels);
if (labels != NULL_TREE)
- error ("The number of CASE selectors does not match the number "
- "of CASE label lists");
+ error ("The number of CASE selectors does not match the number of CASE label lists");
}
}