diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-05-27 03:39:30 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-05-27 03:39:30 +0000 |
commit | 86f856f19c4f149961911b358ff997de87327d08 (patch) | |
tree | 4c7d08511c21ed25b594eb6375545eef6e31de27 /llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp | |
parent | 39edea83068a813a1097ccfa98d59d9dbe54e3b7 (diff) | |
download | bcm5719-llvm-86f856f19c4f149961911b358ff997de87327d08.tar.gz bcm5719-llvm-86f856f19c4f149961911b358ff997de87327d08.zip |
match gcc, makes diff easier
llvm-svn: 22179
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp b/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp index 4bf7b56e7c9..a2f97d75c3c 100644 --- a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp +++ b/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp @@ -184,8 +184,8 @@ bool AlphaAsmPrinter::runOnMachineFunction(MachineFunction &MF) { // 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"; |