aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2005-05-27 03:39:30 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2005-05-27 03:39:30 +0000
commit044f31ffb14972cbbefc70b564259d1d46e8daba (patch)
tree710183bb71db78dda7ffa5efa05a47c147e6a292
parent69520ed67a851fe303a2b665ca27fce99663eaf0 (diff)
match gcc, makes diff easier
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22179 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/Alpha/AlphaAsmPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Alpha/AlphaAsmPrinter.cpp b/lib/Target/Alpha/AlphaAsmPrinter.cpp
index 4bf7b56e7c..a2f97d75c3 100644
--- a/lib/Target/Alpha/AlphaAsmPrinter.cpp
+++ b/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";