diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-06-28 06:26:54 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-06-28 06:26:54 +0000 |
commit | d1a586888ec752c4a3e9aa322f2f8ebe1c6ff9c4 (patch) | |
tree | a7a80d0a2c536203d919b2a5eb3328aa0e029f54 /gcc/cpplib.c | |
parent | 55c1c60d4fb961c1e895d53203b23c68f9744eb9 (diff) | |
download | gcc-d1a586888ec752c4a3e9aa322f2f8ebe1c6ff9c4.zip gcc-d1a586888ec752c4a3e9aa322f2f8ebe1c6ff9c4.tar.gz gcc-d1a586888ec752c4a3e9aa322f2f8ebe1c6ff9c4.tar.bz2 |
re PR preprocessor/7138 (gcc-3.2 failed to compile kernel)
PR preprocessor/7138
* cpplib.c (_cpp_handle_directive): Do traditional
preparation after setting state.angled_headers.
* cpptrad.c (scan_out_logical_line): Fix potential
quote bug.
From-SVN: r55055
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 6bb9f4d..f2d33a8 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -388,10 +388,6 @@ _cpp_handle_directive (pfile, indented) "style of line directive is a GCC extension"); } - pfile->directive = dir; - if (CPP_OPTION (pfile, traditional)) - prepare_directive_trad (pfile); - if (dir) { /* If we have a directive that is not an opening conditional, @@ -442,6 +438,10 @@ _cpp_handle_directive (pfile, indented) cpp_token_as_text (pfile, dname)); } + pfile->directive = dir; + if (CPP_OPTION (pfile, traditional)) + prepare_directive_trad (pfile); + if (dir) { /* If we are processing a `#define' directive and we have been |