mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Actually make debug output understandable.
llvm-svn: 58529
This commit is contained in:
parent
6363e90277
commit
31306c546f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user