diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-23 16:29:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-23 16:29:58 +0000 |
commit | 9bffb0701d02a10e77e1ac0f196074eed6466ed0 (patch) | |
tree | a9b3c3913b15036affbcaee8ee53e03bb9379dad /lib/Basic/TargetInfo.cpp | |
parent | d57a38ee02c285d69d05fed6df0d7406b2517888 (diff) |
david conrad points out that {|} in inline assembly on arm are not asm
variants. This fixes neon inline asm which my patch for PR6780 broke.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/TargetInfo.cpp')
-rw-r--r-- | lib/Basic/TargetInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp index b259facbb7..4c0c59a109 100644 --- a/lib/Basic/TargetInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -23,6 +23,7 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) { // Set defaults. Defaults are set for a 32-bit RISC platform, like PPC or // SPARC. These should be overridden by concrete targets as needed. TLSSupported = true; + NoAsmVariants = false; PointerWidth = PointerAlign = 32; IntWidth = IntAlign = 32; LongWidth = LongAlign = 32; |