diff options
author | Gabriel Dos Reis <gdr@integrable-solutions.net> | 2004-10-31 02:10:12 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2004-10-31 02:10:12 +0000 |
commit | 0a3ee0fdb5abdf4f071032ed54ef2bfea876c81c (patch) | |
tree | db4116bd3ccfb5c043412bc6f6fbd74c9d552967 /gcc/c-common.c | |
parent | b789258287043cbe3b05675d281faf9d4c9e2760 (diff) | |
download | gcc-0a3ee0fdb5abdf4f071032ed54ef2bfea876c81c.zip gcc-0a3ee0fdb5abdf4f071032ed54ef2bfea876c81c.tar.gz gcc-0a3ee0fdb5abdf4f071032ed54ef2bfea876c81c.tar.bz2 |
c-common.c (catenate_strings): New.
* c-common.c (catenate_strings): New.
(c_parse_error): Use it. Don't over-escape.
testsuite/
* gcc.dg/20040910-1.c: Adjust regex.
From-SVN: r89910
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 61 |
1 files changed, 50 insertions, 11 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 271b436..ea8b26c 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -5479,36 +5479,75 @@ resort_sorted_fields (void *obj, resort_field_decl_cmp); } +/* Subroutine of c_parse_error. + Return the result of concatenating LHS and RHS. RHS is really + a string literal, its first character is indicated by RHS_START and + RHS_SIZE is its lenght (including the terminating NUL character). + + The caller is responsible for deleting the returned pointer. */ + +static char * +catenate_strings (const char *lhs, const char *rhs_start, int rhs_size) +{ + const int lhs_size = strlen (lhs); + char *result = XNEWVEC (char, lhs_size + rhs_size); + strncpy (result, lhs, lhs_size); + strncpy (result + lhs_size, rhs_start, rhs_size); + return result; +} + /* Issue the error given by MSGID, indicating that it occurred before TOKEN, which had the associated VALUE. */ void c_parse_error (const char *msgid, enum cpp_ttype token, tree value) { - const char *string = _(msgid); +#define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2)) + + char *message = NULL; if (token == CPP_EOF) - error ("%s at end of input", string); + message = catenate_messages (msgid, " at end of input"); else if (token == CPP_CHAR || token == CPP_WCHAR) { unsigned int val = TREE_INT_CST_LOW (value); const char *const ell = (token == CPP_CHAR) ? "" : "L"; if (val <= UCHAR_MAX && ISGRAPH (val)) - error ("%s before %s'%c'", string, ell, val); + message = catenate_messages (msgid, " before %s'%c'"); else - error ("%s before %s'\\x%x'", string, ell, val); + message = catenate_messages (msgid, " before %s'\\x%x'"); + + error (message, ell, val); + free (message); + message = NULL; } - else if (token == CPP_STRING - || token == CPP_WSTRING) - error ("%s before string constant", string); + else if (token == CPP_STRING || token == CPP_WSTRING) + message = catenate_messages (msgid, " before string constant"); else if (token == CPP_NUMBER) - error ("%s before numeric constant", string); + message = catenate_messages (msgid, " before numeric constant"); else if (token == CPP_NAME) - error ("%s before \"%s\"", string, IDENTIFIER_POINTER (value)); + { + message = catenate_messages (msgid, " before %qs"); + error (message, IDENTIFIER_POINTER (value)); + free (message); + message = NULL; + } else if (token < N_TTYPES) - error ("%s before %qs token", string, cpp_type2name (token)); + { + message = catenate_messages (msgid, " before %qs token"); + error (message, cpp_type2name (token)); + free (message); + message = NULL; + } else - error ("%s", string); + error (msgid); + + if (message) + { + error (message); + free (message); + } +#undef catenate_messages } /* Walk a gimplified function and warn for functions whose return value is |