From a5cc2410f34efbb661ee54bdb376ac7ca508053c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Mar 2004 05:54:20 +0000 Subject: [PATCH] Know the opcode name of the select instruction llvm-svn: 12324 --- lib/VMCore/Instruction.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index b009c01eecb..0de34b5bd54 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -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";