forked from OSchip/llvm-project
Add type output to llvm-dis. Patch by Yuri!
llvm-svn: 127813
This commit is contained in:
parent
f1d62cfc8f
commit
8e08a786bf
|
@ -74,7 +74,7 @@ public:
|
|||
if (!V.getType()->isVoidTy()) {
|
||||
OS.PadToColumn(50);
|
||||
Padded = true;
|
||||
OS << "; [#uses=" << V.getNumUses() << ']'; // Output # uses
|
||||
OS << "; [#uses=" << V.getNumUses() << " type=" << V.getType()->getDescription() << "]"; // Output # uses and type
|
||||
}
|
||||
if (const Instruction *I = dyn_cast<Instruction>(&V)) {
|
||||
const DebugLoc &DL = I->getDebugLoc();
|
||||
|
|
Loading…
Reference in New Issue