aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-03-24 23:36:49 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-03-24 23:36:49 +0000
commitf068865fca6c1da137bad228b52a77635687752f (patch)
tree74d7e6ff44ab4a319f17be2f9a5c1b15d4a4fd84 /lib
parent8e5f24264a26020ecb2aaa7f4b7cbdb2d7c7d8fb (diff)
downloadexternal_llvm-f068865fca6c1da137bad228b52a77635687752f.zip
external_llvm-f068865fca6c1da137bad228b52a77635687752f.tar.gz
external_llvm-f068865fca6c1da137bad228b52a77635687752f.tar.bz2
Add \t after .set. Fix by Jay Freeman.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48753 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMTargetAsmInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMTargetAsmInfo.cpp b/lib/Target/ARM/ARMTargetAsmInfo.cpp
index 61313c5..3e7b69f 100644
--- a/lib/Target/ARM/ARMTargetAsmInfo.cpp
+++ b/lib/Target/ARM/ARMTargetAsmInfo.cpp
@@ -49,7 +49,7 @@ ARMTargetAsmInfo::ARMTargetAsmInfo(const ARMTargetMachine &TM) {
PrivateGlobalPrefix = "L";
BSSSection = 0; // no BSS section.
ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill
- SetDirective = "\t.set";
+ SetDirective = "\t.set\t";
WeakRefDirective = "\t.weak_reference\t";
HiddenDirective = "\t.private_extern\t";
ProtectedDirective = NULL;