aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-12 05:54:20 +0000
committerChris Lattner <sabre@nondot.org>2004-03-12 05:54:20 +0000
commitb4f4880eba456ed240beb6eb571339efbd0bf65f (patch)
tree4cfd6ad2049816a998fe00bd9dbc0d91fdfeeca1
parent08a45cc2ffc7698ee1f74b71afd9d4fb8e49daf8 (diff)
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
-rw-r--r--lib/VMCore/Instruction.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp
index b009c01eec..0de34b5bd5 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";