r219426 - [SystemZ] Turn on the integrated assembler by default
Ulrich Weigand
ulrich.weigand at de.ibm.com
Thu Oct 9 11:46:38 PDT 2014
Author: uweigand
Date: Thu Oct 9 13:46:38 2014
New Revision: 219426
URL: http://llvm.org/viewvc/llvm-project?rev=219426&view=rev
Log:
[SystemZ] Turn on the integrated assembler by default
Modified:
cfe/trunk/lib/Driver/ToolChains.cpp
Modified: cfe/trunk/lib/Driver/ToolChains.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/ToolChains.cpp?rev=219426&r1=219425&r2=219426&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/ToolChains.cpp (original)
+++ cfe/trunk/lib/Driver/ToolChains.cpp Thu Oct 9 13:46:38 2014
@@ -2152,7 +2152,8 @@ bool Generic_GCC::IsIntegratedAssemblerD
getTriple().getArch() == llvm::Triple::thumb ||
getTriple().getArch() == llvm::Triple::thumbeb ||
getTriple().getArch() == llvm::Triple::ppc64 ||
- getTriple().getArch() == llvm::Triple::ppc64le;
+ getTriple().getArch() == llvm::Triple::ppc64le ||
+ getTriple().getArch() == llvm::Triple::systemz;
}
void Generic_ELF::addClangTargetOptions(const ArgList &DriverArgs,
More information about the cfe-commits
mailing list