forked from OSchip/llvm-project
Temporarily revert r151288:
ARM: enable the integrated assembler by default for Darwin. llvm-svn: 151454
This commit is contained in:
parent
25326f060d
commit
4c5c8ccf40
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue