[llvm-commits] [llvm] r48753 - /llvm/trunk/lib/Target/ARM/ARMTargetAsmInfo.cpp
Evan Cheng
evan.cheng at apple.com
Mon Mar 24 16:36:49 PDT 2008
Author: evancheng
Date: Mon Mar 24 18:36:49 2008
New Revision: 48753
URL: http://llvm.org/viewvc/llvm-project?rev=48753&view=rev
Log:
Add \t after .set. Fix by Jay Freeman.
Modified:
llvm/trunk/lib/Target/ARM/ARMTargetAsmInfo.cpp
Modified: llvm/trunk/lib/Target/ARM/ARMTargetAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMTargetAsmInfo.cpp?rev=48753&r1=48752&r2=48753&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMTargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMTargetAsmInfo.cpp Mon Mar 24 18:36:49 2008
@@ -49,7 +49,7 @@
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;
More information about the llvm-commits
mailing list