aboutsummaryrefslogtreecommitdiff
path: root/gcc/fix-header.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-01-13 01:07:32 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-01-13 01:07:32 +0000
commitf85c14eed13fe0985ac491e89ccd0ff8bd4b8a1e (patch)
treea7922a725bb54929e724a801edbcfd3a1f73d998 /gcc/fix-header.c
parent7e96d768fe4e8fa821372cc7c7cd707efb917a3b (diff)
downloadgcc-f85c14eed13fe0985ac491e89ccd0ff8bd4b8a1e.zip
gcc-f85c14eed13fe0985ac491e89ccd0ff8bd4b8a1e.tar.gz
gcc-f85c14eed13fe0985ac491e89ccd0ff8bd4b8a1e.tar.bz2
fix-header.c (read_scan_file): Use cpp_get_callbacks and cpp_get_options rather than dereferencing pfile and...
* fix-header.c (read_scan_file): Use cpp_get_callbacks and cpp_get_options rather than dereferencing pfile and using CPP_OPTION. * scan-decls.c (scan_decls): Use return value of cpp_pop_buffer rather than CPP_BUFFER. From-SVN: r38972
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r--gcc/fix-header.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index 11b1141..522434f 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -613,6 +613,8 @@ read_scan_file (in_fname, argc, argv)
char **argv;
{
cpp_reader* scan_in;
+ cpp_callbacks *cb;
+ cpp_options *options;
struct fn_decl *fn;
int i;
register struct symbol_list *cur_symbols;
@@ -620,12 +622,15 @@ read_scan_file (in_fname, argc, argv)
obstack_init (&scan_file_obstack);
scan_in = cpp_create_reader (CLK_GNUC89);
- scan_in->cb.file_change = cb_file_change;
+ cb = cpp_get_callbacks (scan_in);
+ cb->file_change = cb_file_change;
/* We are going to be scanning a header file out of its proper context,
so ignore warnings and errors. */
- CPP_OPTION (scan_in, inhibit_warnings) = 1;
- CPP_OPTION (scan_in, inhibit_errors) = 1;
+ options = cpp_get_options (pfile);
+ options->inhibit_warnings = 1;
+ options->inhibit_errors = 1;
+
i = cpp_handle_options (scan_in, argc, argv);
if (i < argc && ! CPP_FATAL_ERRORS (scan_in))
cpp_fatal (scan_in, "Invalid option `%s'", argv[i]);