From: Ulrich Weigand Date: Thu, 9 Oct 2014 18:46:38 +0000 (+0000) Subject: [SystemZ] Turn on the integrated assembler by default X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74871aec93e058343c3497b3b4e89c077d158c79;p=clang [SystemZ] Turn on the integrated assembler by default git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219426 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index bd14759ad1..a657c07a79 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -2152,7 +2152,8 @@ bool Generic_GCC::IsIntegratedAssemblerDefault() const { 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,