[llvm-commits] CVS: llvm/lib/Target/ARM/ARMTargetMachine.cpp
Lauro Ramos Venancio
lauro.venancio at gmail.com
Tue Feb 13 12:06:31 PST 2007
Changes in directory llvm/lib/Target/ARM:
ARMTargetMachine.cpp updated: 1.22 -> 1.23
---
Log message:
Add space between // and the comment.
---
Diffs of the changes: (+2 -2)
ARMTargetMachine.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/ARM/ARMTargetMachine.cpp
diff -u llvm/lib/Target/ARM/ARMTargetMachine.cpp:1.22 llvm/lib/Target/ARM/ARMTargetMachine.cpp:1.23
--- llvm/lib/Target/ARM/ARMTargetMachine.cpp:1.22 Tue Feb 13 13:52:28 2007
+++ llvm/lib/Target/ARM/ARMTargetMachine.cpp Tue Feb 13 14:06:15 2007
@@ -35,11 +35,11 @@
ARMTargetMachine::ARMTargetMachine(const Module &M, const std::string &FS)
: Subtarget(M, FS),
DataLayout(Subtarget.isAPCS_ABI() ?
- //APCS ABI
+ // APCS ABI
(Subtarget.isThumb() ?
std::string("e-p:32:32-d:32:32-l:32:32-s:16:32-b:8:32-B:8:32-A:32") :
std::string("e-p:32:32-d:32:32-l:32:32")) :
- //AAPCS ABI
+ // AAPCS ABI
(Subtarget.isThumb() ?
std::string("e-p:32:32-d:64:64-l:64:64-s:16:32-b:8:32-B:8:32-A:32") :
std::string("e-p:32:32-d:64:64-l:64:64"))),
More information about the llvm-commits
mailing list