From: Eric Christopher Date: Fri, 30 Jan 2015 18:22:23 +0000 (+0000) Subject: Fix regression in r227409 where we were passing -fsyntax-only X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50d3f296d08e72dbeb3c60f7a54b1090b57d5a37;p=clang Fix regression in r227409 where we were passing -fsyntax-only in all cases. Patch by Artem Belevich. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@227591 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index ceb6775a3d..512aad2ca6 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -5166,6 +5166,7 @@ void gcc::Compile::RenderExtraToolArgs(const JobAction &JA, break; case types::TY_PP_Asm: CmdArgs.push_back("-S"); + break; case types::TY_Nothing: CmdArgs.push_back("-fsyntax-only"); break; diff --git a/test/Driver/gfortran.f90 b/test/Driver/gfortran.f90 index 3631f8c9f4..e687e51b4d 100644 --- a/test/Driver/gfortran.f90 +++ b/test/Driver/gfortran.f90 @@ -251,3 +251,10 @@ ! ! CHECK-PR22234-NOT: clang: error: invalid output type ! CHECK-PR22234: "-fsyntax-only" +! +! Regression test for the bug introduced with PR22234 fix. +! Make sure -fsyntax-only is not passed to gfortran during normal compilation. +! +! RUN: %clang -no-canonical-prefixes -target i386-linux -### %s -o %t 2>&1 \ +! RUN: | FileCheck %s --check-prefix=CHECK-PR22234-R +! CHECK-PR22234-R-NOT: "-fsyntax-only"