Temporarily revert r151288:

ARM: enable the integrated assembler by default for Darwin. 

llvm-svn: 151454
This commit is contained in:
Chad Rosier 2012-02-25 20:32:43 +00:00
parent 25326f060d
commit 4c5c8ccf40
1 changed files with 3 additions and 2 deletions

View File

@ -329,8 +329,9 @@ public:
#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
return false;
#else
// Default integrated assembler to on for Darwin.
return true;
// Default integrated assembler to on for x86.
return (getTriple().getArch() == llvm::Triple::x86 ||
getTriple().getArch() == llvm::Triple::x86_64);
#endif
}
virtual bool IsStrictAliasingDefault() const {