[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Thu May 26 20:40:19 PDT 2005
Changes in directory llvm/lib/Target/Alpha:
AlphaAsmPrinter.cpp updated: 1.14 -> 1.15
---
Log message:
match gcc, makes diff easier
---
Diffs of the changes: (+2 -2)
AlphaAsmPrinter.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp
diff -u llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.14 llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.15
--- llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.14 Wed May 4 14:12:09 2005
+++ llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp Thu May 26 22:39:30 2005
@@ -184,8 +184,8 @@
// Print out labels for the function.
SwitchSection(O, "text");
emitAlignment(4);
- O << "\t.globl\t" << CurrentFnName << "\n";
- O << "\t.ent\t" << CurrentFnName << "\n";
+ O << "\t.globl " << CurrentFnName << "\n";
+ O << "\t.ent " << CurrentFnName << "\n";
O << CurrentFnName << ":\n";
More information about the llvm-commits
mailing list