[llvm-commits] CVS: llvm/lib/Target/ARM/ARMAsmPrinter.cpp
Rafael Espindola
rafael.espindola at gmail.com
Fri Dec 8 14:06:18 PST 2006
Changes in directory llvm/lib/Target/ARM:
ARMAsmPrinter.cpp updated: 1.37 -> 1.38
---
Log message:
%progbits not @progbits
---
Diffs of the changes: (+1 -1)
ARMAsmPrinter.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/ARM/ARMAsmPrinter.cpp
diff -u llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.37 llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.38
--- llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.37 Fri Dec 8 15:24:58 2006
+++ llvm/lib/Target/ARM/ARMAsmPrinter.cpp Fri Dec 8 16:06:02 2006
@@ -322,7 +322,7 @@
I->getSection() == ".dtors")) {
std::string SectionName = ".section " + I->getSection();
- SectionName += ",\"aw\", at progbits";
+ SectionName += ",\"aw\",%progbits";
SwitchToDataSection(SectionName.c_str());
} else {
More information about the llvm-commits
mailing list