diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-18 21:17:14 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-18 21:17:14 +0000 |
commit | 60c10fe617cfff8faff084a2cf0216df7f96a309 (patch) | |
tree | fb93549acf968622b44df2b4391ed4776f47b60f /gcc/gcc.c | |
parent | 0f7730b8c8582e6e4c885204b03d44056793d8b3 (diff) | |
download | gcc-60c10fe617cfff8faff084a2cf0216df7f96a309.tar.gz |
PR driver/47787
* gcc.c (default_compilers): Clear combinable field for "@cpp-output".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170286 138bc75d-0d04-0410-961f-82ee72b054a4
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}, |