diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-08-14 20:17:55 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-08-14 20:17:55 +0000 |
commit | 8bfb14674d5dccd6a1cdd71051dfac643901c4d4 (patch) | |
tree | 8bda098fc62ead108660a24e4d81f6fd4ff0376b /gcc | |
parent | 4168506336b20c2d834453d98d262f1e1648222c (diff) | |
download | gcc-8bfb14674d5dccd6a1cdd71051dfac643901c4d4.zip gcc-8bfb14674d5dccd6a1cdd71051dfac643901c4d4.tar.gz gcc-8bfb14674d5dccd6a1cdd71051dfac643901c4d4.tar.bz2 |
re PR preprocessor/7526 (cpp0 core dump when _Pragma implies #pragma dependency)
PR preprocessor/7526
* cpplib.c (run_directive): Kludge so _Pragma dependency works.
testsuite:
* gcc.dg/cpp/_Pragma3.c: New test.
From-SVN: r56332
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cpplib.c | 5 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/cpp/_Pragma3.c | 11 |
4 files changed, 25 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index afd4ac2..a411d93 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-08-14 Neil Booth <neil@daikokuya.co.uk> + + PR preprocessor/7526 + * cpplib.c (run_directive): Kludge so _Pragma dependency works. + 2002-08-14 Nathan Sidwell <nathan@codesourcery.com> * doc/invoke.texi (-a): Remove documentation. diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 935a0e0..0e9c4a1 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -459,6 +459,9 @@ run_directive (pfile, dir_no, buf, count) { cpp_push_buffer (pfile, (const uchar *) buf, count, /* from_stage3 */ true, 1); + /* Disgusting hack. */ + if (dir_no == T_PRAGMA) + pfile->buffer->inc = pfile->buffer->prev->inc; start_directive (pfile); /* We don't want a leading # to be interpreted as a directive. */ pfile->buffer->saved_flags = 0; @@ -467,6 +470,8 @@ run_directive (pfile, dir_no, buf, count) prepare_directive_trad (pfile); (void) (*pfile->directive->handler) (pfile); end_directive (pfile, 1); + if (dir_no == T_PRAGMA) + pfile->buffer->inc = NULL; _cpp_pop_buffer (pfile); } diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a6d3d69..e9fd927 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-08-14 Neil Booth <neil@daikokuya.co.uk> + + * gcc.dg/cpp/_Pragma3.c: New test. + 2002-08-13 Mark Mitchell <mark@codesourcery.com> * g++.dg/template/inherit3: New test. diff --git a/gcc/testsuite/gcc.dg/cpp/_Pragma3.c b/gcc/testsuite/gcc.dg/cpp/_Pragma3.c new file mode 100644 index 0000000..7d1b42a --- /dev/null +++ b/gcc/testsuite/gcc.dg/cpp/_Pragma3.c @@ -0,0 +1,11 @@ +/* Copyright (C) 2002 Free Software Foundation, Inc. */ + +/* { dg-do preprocess } */ + +/* Pragma buffers have a NULL "inc" member, which we would dereference + when getting a file's date and time. + + Based on PR 7526. 14 Aug 2002. */ + +#define GCC_PRAGMA(x) _Pragma (#x) +GCC_PRAGMA(GCC dependency "mi1c.h") |