diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-03-03 14:50:20 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-03-03 14:50:20 +0000 |
commit | 795a25f433509a65393d73f963c831c215111632 (patch) | |
tree | 0ea878f702e50b2ecbf4266387fc0a46d44bbc71 /gcc/cpplex.c | |
parent | c691145a655ed6fe191c2f7ce3220f19e46d2c3f (diff) | |
download | gcc-795a25f433509a65393d73f963c831c215111632.zip gcc-795a25f433509a65393d73f963c831c215111632.tar.gz gcc-795a25f433509a65393d73f963c831c215111632.tar.bz2 |
* cpplex.c (parse_string): Unconditionally pedwarn.
From-SVN: r40214
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c index c0b5e02..939951a 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -686,8 +686,7 @@ parse_string (pfile, token, terminator) break; } - if (! cpp_sys_macro_p (pfile)) - cpp_pedwarn (pfile, "multi-line string constants are deprecated"); + cpp_pedwarn (pfile, "multi-line string literals are deprecated"); if (pfile->mlstring_pos.line == 0) pfile->mlstring_pos = pfile->lexer_pos; |