diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-02-18 22:17:14 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-02-18 22:17:14 +0100 |
commit | ca3da783ed735b6eec19ca4576ce64a8fcacce65 (patch) | |
tree | fb93549acf968622b44df2b4391ed4776f47b60f /gcc/gcc.c | |
parent | 67962076d924f38585df74b04d6b25befda300e0 (diff) | |
download | gcc-ca3da783ed735b6eec19ca4576ce64a8fcacce65.tar.gz |
re PR driver/47787 (GCC with -flto combines preprocessed C sources)
PR driver/47787
* gcc.c (default_compilers): Clear combinable field for "@cpp-output".
From-SVN: r170286
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index 80a3ba60223..6a26aafc3ca 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -950,7 +950,7 @@ static const struct compiler default_compilers[] = %W{o*:--output-pch=%*}}%V}}}}}}", 0, 0, 0}, {".i", "@cpp-output", 0, 0, 0}, {"@cpp-output", - "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 1, 0}, + "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0}, {".s", "@assembler", 0, 0, 0}, {"@assembler", "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0}, |