diff --git a/llvm/lib/CodeGen/MachineCodeEmitter.cpp b/llvm/lib/CodeGen/MachineCodeEmitter.cpp index e2b4908c7420..d28fdeebbccf 100644 --- a/llvm/lib/CodeGen/MachineCodeEmitter.cpp +++ b/llvm/lib/CodeGen/MachineCodeEmitter.cpp @@ -26,7 +26,10 @@ namespace { std::cout << "0x" << std::hex << (unsigned int)B << std::dec << " "; } void emitPCRelativeDisp(Value *V) { - std::cout << "<" << V->getName() << ": 0xXX 0xXX 0xXX 0xXX> "; + std::cout << "getName() << ": 0xXX 0xXX 0xXX 0xXX> "; + } + void emitGlobalAddress(GlobalValue *V) { + std::cout << "getName() << ": 0xXX 0xXX 0xXX 0xXX> "; } }; }