c-opts.c (needValue): Do cpp_find_main_file before processing any imacros flags...

* c-opts.c (needValue):  Do cpp_find_main_file before processing
	any imacros flags, so pfile->main_file is set for the latter.

From-SVN: r73212
This commit is contained in:
Per Bothner 2003-11-02 23:24:28 -08:00 committed by Per Bothner
parent ee208a5919
commit d8ccee1ee4
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2003-11-02 Per Bothner <per@bothner.com>
* c-opts.c (needValue): Do cpp_find_main_file before processing
any imacros flags, so pfile->main_file is set for the latter.
2003-11-03 Andreas Jaeger <aj@suse.de>
Zack Weinberg <zack@codesourcery.com>

View file

@ -1392,6 +1392,10 @@ add_prefixed_path (const char *suffix, size_t chain)
static bool
finish_options (const char *tif)
{
this_input_filename = tif;
if (! cpp_find_main_file (parse_in, this_input_filename))
return false;
if (!cpp_opts->preprocessed)
{
size_t i;
@ -1441,9 +1445,6 @@ finish_options (const char *tif)
}
include_cursor = 0;
this_input_filename = tif;
if (! cpp_find_main_file (parse_in, this_input_filename))
return false;
push_command_line_include ();
return true;
}