diff options
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 580ef35..9d6a105 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -995,12 +995,10 @@ cpp_finish_options (pfile) struct pending_option *p; _cpp_do_file_change (pfile, LC_RENAME, _("<built-in>"), 1, 0); - if (!CPP_OPTION (pfile, traditional) /* REMOVEME */) - init_builtins (pfile); + init_builtins (pfile); _cpp_do_file_change (pfile, LC_RENAME, _("<command line>"), 1, 0); - if (!CPP_OPTION (pfile, traditional) /* REMOVEME */) - for (p = CPP_OPTION (pfile, pending)->directive_head; p; p = p->next) - (*p->handler) (pfile, p->arg); + for (p = CPP_OPTION (pfile, pending)->directive_head; p; p = p->next) + (*p->handler) (pfile, p->arg); /* Scan -imacros files after -D, -U, but before -include. pfile->next_include_file is NULL, so _cpp_pop_buffer does not |