aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/fix-header.c5
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7320557..b42a392 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2003-03-15 Neil Booth <neil@daikokuya.co.uk>
+
+ * fix-header.c (read_scan_file): Read main file before handling -D.
+
2003-03-15 Roger Sayle <roger@eyesopen.com>
* c-cppbuiltin.c (builtin_define_with_value_n): Fix whitespace.
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index 36e1d7c..f58df6e 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -632,6 +632,9 @@ read_scan_file (in_fname, argc, argv)
options->inhibit_warnings = 1;
options->inhibit_errors = 1;
+ if (! cpp_read_main_file (scan_in, in_fname, NULL))
+ exit (FATAL_EXIT_CODE);
+
for (i = 0; i < argc; i += strings_processed)
{
strings_processed = 0;
@@ -669,8 +672,6 @@ read_scan_file (in_fname, argc, argv)
register_include_chains (scan_in, NULL /* sysroot */, NULL /* iprefix */,
true /* stdinc */, false /* cxx_stdinc */,
false /* verbose */);
- if (! cpp_read_main_file (scan_in, in_fname, NULL))
- exit (FATAL_EXIT_CODE);
cpp_rename_file (scan_in, "<built-in>");
cpp_init_builtins (scan_in);