forked from OSchip/llvm-project
Print ConstantPool entries initialized to Values with WriteAsOperand instead of
operator<< so that functions are printed as just their name instead of as their entire definition, which is excessively verbose in this context. llvm-svn: 183871
This commit is contained in:
parent
2e3c4025ae
commit
6a0c9ae4f9
|
@ -17,6 +17,7 @@
|
|||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
#include "llvm/Analysis/ConstantFolding.h"
|
||||
#include "llvm/Assembly/Writer.h"
|
||||
#include "llvm/CodeGen/MachineConstantPool.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
|
@ -887,7 +888,7 @@ void MachineConstantPool::print(raw_ostream &OS) const {
|
|||
if (Constants[i].isMachineConstantPoolEntry())
|
||||
Constants[i].Val.MachineCPVal->print(OS);
|
||||
else
|
||||
OS << *(const Value*)Constants[i].Val.ConstVal;
|
||||
WriteAsOperand(OS, Constants[i].Val.ConstVal, /*PrintType=*/false);
|
||||
OS << ", align=" << Constants[i].getAlignment();
|
||||
OS << "\n";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue