diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-03-03 11:32:32 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-03-03 11:32:32 +0000 |
commit | c691145a655ed6fe191c2f7ce3220f19e46d2c3f (patch) | |
tree | 13a0b2cea1a5401bbb4f81dfe7b01474a61b9a00 /gcc/cppexp.c | |
parent | 4073aad5b5460710695ff3d15315e16c6549311e (diff) | |
download | gcc-c691145a655ed6fe191c2f7ce3220f19e46d2c3f.zip gcc-c691145a655ed6fe191c2f7ce3220f19e46d2c3f.tar.gz gcc-c691145a655ed6fe191c2f7ce3220f19e46d2c3f.tar.bz2 |
cpp.texi: Update.
* cpp.texi: Update.
* cppexp.c (parse_number): Update.
* cpplex.c (parse_string): Pedwarn if multiline string does not
result from a system header's macro.
* cpplib.h (sys_objmacro_p): Rename sys_macro_p.
* cppmacro.c (sys_objmacro_p): Rename sys_macro_p. Return true
for function-like macros too.
* c-lex.c (parse_number): Update.
From-SVN: r40211
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index 6ce693e..1231a7e 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -205,7 +205,7 @@ parse_number (pfile, tok) if (CPP_WTRADITIONAL (pfile) && sufftab[i].u - && ! cpp_sys_objmacro_p (pfile)) + && ! cpp_sys_macro_p (pfile)) cpp_warning (pfile, "traditional C rejects the `U' suffix"); if (sufftab[i].l == 2 && CPP_OPTION (pfile, pedantic) && ! CPP_OPTION (pfile, c99)) |