Debug output tweak.
authorEvan Cheng <evan.cheng@apple.com>
Tue, 4 Nov 2008 17:58:53 +0000 (17:58 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Tue, 4 Nov 2008 17:58:53 +0000 (17:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58708 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMCodeEmitter.cpp

index 68a36aee1623e1bba9cd2b3d30b1514390386b19..47aa22b7d9d6b29a189bd1eb33931049d6293b18 100644 (file)
@@ -281,7 +281,7 @@ void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
       static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
 
     DOUT << "\t** ARM constant pool #" << CPI << " @ "
-         << (void*)MCE.getCurrentPCValue() << " '" << *ACPV << "'\n";
+         << (void*)MCE.getCurrentPCValue() << " " << *ACPV << "\n";
 
     GlobalValue *GV = ACPV->getGV();
     if (GV) {
@@ -298,7 +298,7 @@ void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
     Constant *CV = MCPE.Val.ConstVal;
 
     DOUT << "\t** Constant pool #" << CPI << " @ "
-         << (void*)MCE.getCurrentPCValue() << " '" << *CV << "'\n";
+         << (void*)MCE.getCurrentPCValue() << " " << *CV << "\n";
 
     if (GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
       emitGlobalAddress(GV, ARM::reloc_arm_absolute, false);