diff --git a/lib/Target/ARM/ARMCodeEmitter.cpp b/lib/Target/ARM/ARMCodeEmitter.cpp index 68a36aee162..47aa22b7d9d 100644 --- a/lib/Target/ARM/ARMCodeEmitter.cpp +++ b/lib/Target/ARM/ARMCodeEmitter.cpp @@ -281,7 +281,7 @@ void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) { static_cast(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(CV)) { emitGlobalAddress(GV, ARM::reloc_arm_absolute, false);