diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-03-24 23:36:49 +0000 | 
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-24 23:36:49 +0000 | 
| commit | 50b536eef9be728bc3614226f65085d61ac96af3 (patch) | |
| tree | e439b9efc464bc0ef8c930ece0c4dce41f7c4d7d /llvm | |
| parent | 69a3f9c4177711dada3a126a91e875af65282394 (diff) | |
| download | bcm5719-llvm-50b536eef9be728bc3614226f65085d61ac96af3.tar.gz bcm5719-llvm-50b536eef9be728bc3614226f65085d61ac96af3.zip  | |
Add \t after .set. Fix by Jay Freeman.
llvm-svn: 48753
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMTargetAsmInfo.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetAsmInfo.cpp b/llvm/lib/Target/ARM/ARMTargetAsmInfo.cpp index 61313c56852..3e7b69f9fb0 100644 --- a/llvm/lib/Target/ARM/ARMTargetAsmInfo.cpp +++ b/llvm/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;  | 

