mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
503 B
Diff
18 lines
503 B
Diff
|
--- gcc/c-family/c-opts.c (revision 200330)
|
||
|
+++ gcc/c-family/c-opts.c (working copy)
|
||
|
@@ -1338,10 +1338,14 @@ c_finish_options (void)
|
||
|
|
||
|
/* Give CPP the next file given by -include, if any. */
|
||
|
static void
|
||
|
push_command_line_include (void)
|
||
|
{
|
||
|
+ // This can happen if disabled by -imacros for example.
|
||
|
+ if (include_cursor > deferred_count)
|
||
|
+ return;
|
||
|
+
|
||
|
if (!done_preinclude)
|
||
|
{
|
||
|
done_preinclude = true;
|
||
|
if (flag_hosted && std_inc && !cpp_opts->preprocessed)
|
||
|
{
|