diff options
-rw-r--r-- | lib/Target/ARM/ARMCodeEmitter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/ARM/ARMCodeEmitter.cpp b/lib/Target/ARM/ARMCodeEmitter.cpp index b1c6f33f4b..0e932547e9 100644 --- a/lib/Target/ARM/ARMCodeEmitter.cpp +++ b/lib/Target/ARM/ARMCodeEmitter.cpp @@ -275,8 +275,8 @@ void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) { ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal); - DOUT << "\t** ARM constant pool #" << CPI << ", ' @ " - << (void*)MCE.getCurrentPCValue() << *ACPV << '\n'; + DOUT << "\t** ARM constant pool #" << CPI << " @ " + << (void*)MCE.getCurrentPCValue() << " '" << *ACPV << "'\n"; GlobalValue *GV = ACPV->getGV(); if (GV) { @@ -290,8 +290,8 @@ void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) { } else { Constant *CV = MCPE.Val.ConstVal; - DOUT << "\t** Constant pool #" << CPI << ", ' @ " - << (void*)MCE.getCurrentPCValue() << *CV << '\n'; + DOUT << "\t** Constant pool #" << CPI << " @ " + << (void*)MCE.getCurrentPCValue() << " '" << *CV << "'\n"; if (GlobalValue *GV = dyn_cast<GlobalValue>(CV)) { emitGlobalAddress(GV, ARM::reloc_arm_absolute, false); |