Know the opcode name of the select instruction

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12324 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-03-12 05:54:20 +00:00
parent 08a45cc2ff
commit b4f4880eba

View File

@ -97,6 +97,7 @@ const char *Instruction::getOpcodeName(unsigned OpCode) {
// Other instructions...
case PHI: return "phi";
case Cast: return "cast";
case Select: return "select";
case Call: return "call";
case Shl: return "shl";
case Shr: return "shr";