1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Debug output tweak.

llvm-svn: 58708
This commit is contained in:
Evan Cheng 2008-11-04 17:58:53 +00:00
parent 088f7c51a4
commit d63b7563b7

View 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);