diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-07 07:14:42 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-07 07:14:42 +0000 |
commit | 41a9aa85e255a4f2cf8d2dcab82a1a7a82429e0b (patch) | |
tree | 183c8a37ae0d1cb8f8f4a7c5d3cc009146d70982 /gcc/c-common.c | |
parent | 7943f969d8272002108ef9f24acbd69c7e485eee (diff) | |
download | gcc-41a9aa85e255a4f2cf8d2dcab82a1a7a82429e0b.tar.gz |
* c-common.c (parse_in): Make a cpp_reader *.
* cppfiles.c (_cpp_fake_include): Remove.
* cpphash.h: Similarly.
* cpplib.c (do_line): Don't call _cpp_fake_include. A valid
#line always creates a callback; FC_RENAME if there are no
#line flags.
* fix-header.c (read_scan_file): cpp_push_buffer cannot fail.
The first EOF must be our get_char buffer.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38101 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index cdbc8aabdc4..b42f3205618 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -36,7 +36,7 @@ Boston, MA 02111-1307, USA. */ #include "diagnostic.h" #include "obstack.h" #include "cpplib.h" -cpp_reader parse_in; +cpp_reader *parse_in; /* Declared in c-lex.h. */ #undef WCHAR_TYPE_SIZE #define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node) |