diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2000-05-30 02:40:48 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-05-30 02:40:48 +0000 |
commit | 37dbf7aa9c7ecd0d04c5caf229023d9e4d911129 (patch) | |
tree | d00c4ee461538b9857b27d0d4789a07da42adf5e | |
parent | 6a3dbe6543fe3d23a1936c3867e9980eec075c15 (diff) | |
download | gcc-37dbf7aa9c7ecd0d04c5caf229023d9e4d911129.zip gcc-37dbf7aa9c7ecd0d04c5caf229023d9e4d911129.tar.gz gcc-37dbf7aa9c7ecd0d04c5caf229023d9e4d911129.tar.bz2 |
cpplib.c (do_if): Don't save and restore only_seen_white here.
* cpplib.c (do_if): Don't save and restore only_seen_white here.
* cppexp.c (_cpp_parse_expr): Save and restore only_seen_white
and skipping here.
From-SVN: r34260
-rw-r--r-- | gcc/ChangeLog | 18 | ||||
-rw-r--r-- | gcc/cppexp.c | 8 | ||||
-rw-r--r-- | gcc/cpplib.c | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/20000529-1.c | 14 |
4 files changed, 34 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3fc2746..525c8b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-05-29 Zack Weinberg <zack@wolery.cumb.org> + + * cpplib.c (do_if): Don't save and restore only_seen_white here. + * cppexp.c (_cpp_parse_expr): Save and restore only_seen_white + and skipping here. + 2000-05-29 Richard Earnshaw (rearnsha@arm.com) * flow.c (mark_used_reg): If a register is unconditionally live, @@ -249,14 +255,14 @@ Sun May 28 23:26:59 2000 Philippe De Muyter <phdm@macqel.be> 2000-05-28 Neil Booth <NeilB@earthling.net> - * cpplex.c (_cpp_init_toklist): No comment space to initialise. + * cpplex.c (_cpp_init_toklist): No comment space to initialise. (_cpp_free_toklist): No comment space to free. (expand_comment_space): Remove. - (save_comment_space): Place the comment in the current token and - not in a separate comment space. - (_cpp_lex_line): Save comments during plain code and #define - directives only. - * cpplib.h (struct _cpp_toklist): Remove comment space. + (save_comment_space): Place the comment in the current token and + not in a separate comment space. + (_cpp_lex_line): Save comments during plain code and #define + directives only. + * cpplib.h (struct _cpp_toklist): Remove comment space. 2000-05-28 Neil Booth <NeilB@earthling.net> diff --git a/gcc/cppexp.c b/gcc/cppexp.c index b50acd8..58430c3 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -843,6 +843,12 @@ _cpp_parse_expr (pfile) int result; char buff[5]; + /* Save parser state and set it to something sane. */ + int save_only_seen_white = pfile->only_seen_white; + int save_skipping = pfile->skipping; + pfile->only_seen_white = 0; + pfile->skipping = 0; + /* We've finished when we try to reduce this. */ top->op = FINISHED; /* Nifty way to catch missing '('. */ @@ -1162,5 +1168,7 @@ _cpp_parse_expr (pfile) if (stack != init_stack) free (stack); CPP_SET_WRITTEN (pfile, old_written); + pfile->only_seen_white = save_only_seen_white; + pfile->skipping = save_skipping; return result; } diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 3bc8825..e339c1e 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -1186,15 +1186,11 @@ do_if (pfile) { const cpp_hashnode *cmacro = 0; int value = 0; - int save_only_seen_white = pfile->only_seen_white; if (! pfile->skipping) { cmacro = detect_if_not_defined (pfile); - - pfile->only_seen_white = 0; value = _cpp_parse_expr (pfile); - pfile->only_seen_white = save_only_seen_white; } push_conditional (pfile, value == 0, T_IF, cmacro); return 0; diff --git a/gcc/testsuite/gcc.dg/20000529-1.c b/gcc/testsuite/gcc.dg/20000529-1.c new file mode 100644 index 0000000..6343a81 --- /dev/null +++ b/gcc/testsuite/gcc.dg/20000529-1.c @@ -0,0 +1,14 @@ +/* Regression test for bug with macro expansion on #if lines - + exposed by glibc. */ +/* { dg-do compile } */ + +# define SHLIB_COMPAT(lib, introduced, obsoleted) \ + (!(ABI_##lib##_##obsoleted - 0) \ + || ((ABI_##lib##_##introduced - 0) < (ABI_##lib##_##obsoleted - 0))) + +#if 0 +bad +#elif SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) +int +#endif +x; |