Add type output to llvm-dis. Patch by Yuri!

llvm-svn: 127813
This commit is contained in:
Stuart Hastings 2011-03-17 16:30:14 +00:00
parent 0e9d7aeb1f
commit b1ced0cb9e

View File

@ -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();