aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Sparc
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-27 20:09:23 +0000
committerChris Lattner <sabre@nondot.org>2006-02-27 20:09:23 +0000
commita34544d96c2e84fa84827e92e193f79353c64df0 (patch)
tree48b125eb3a1605212bf814b3413e960bfffd0d08 /lib/Target/Sparc
parentbd76184e67faf1ece54ff984739c29239e118c76 (diff)
downloadexternal_llvm-a34544d96c2e84fa84827e92e193f79353c64df0.zip
external_llvm-a34544d96c2e84fa84827e92e193f79353c64df0.tar.gz
external_llvm-a34544d96c2e84fa84827e92e193f79353c64df0.tar.bz2
Don't print constant initializers, they may span lines now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26403 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc')
-rw-r--r--lib/Target/Sparc/SparcAsmPrinter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/Sparc/SparcAsmPrinter.cpp b/lib/Target/Sparc/SparcAsmPrinter.cpp
index 5eacb81..3be81a5 100644
--- a/lib/Target/Sparc/SparcAsmPrinter.cpp
+++ b/lib/Target/Sparc/SparcAsmPrinter.cpp
@@ -293,8 +293,6 @@ bool SparcAsmPrinter::doFinalization(Module &M) {
O << "\t.size " << name << "," << Size << "\n";
O << name << ":\t\t\t\t! ";
WriteAsOperand(O, I, true, true, &M);
- O << " = ";
- WriteAsOperand(O, C, false, false, &M);
O << "\n";
EmitGlobalConstant(C);
}