aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2012-02-27 23:55:25 +0000
committerJim Grosbach <grosbach@apple.com>2012-02-27 23:55:25 +0000
commit033d3007b16d7f6c0f0eafd06c7096cfd22d89f5 (patch)
tree6395063ca81b6c26ecb746e82749e7a3fca4c67d
parent7752d292c97fd4b78a954c9a027b2a862be50f8b (diff)
Re-enable the Darwin ARM integrated assembler.
All known nightly-test failures are fixed. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151595 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Driver/ToolChains.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h
index 98c226b0e1..0fb213828f 100644
--- a/lib/Driver/ToolChains.h
+++ b/lib/Driver/ToolChains.h
@@ -329,9 +329,8 @@ public:
#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
return false;
#else
- // Default integrated assembler to on for x86.
- return (getTriple().getArch() == llvm::Triple::x86 ||
- getTriple().getArch() == llvm::Triple::x86_64);
+ // Default integrated assembler to on for Darwin.
+ return true;
#endif
}
virtual bool IsStrictAliasingDefault() const {