diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-12 05:54:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-12 05:54:20 +0000 |
commit | 8337d4462f77ea621657cae58133599f667ce248 (patch) | |
tree | c8a56c65bc56c3cac923cd442b8aa4ba38e39215 /llvm/lib/VMCore/Instruction.cpp | |
parent | 6e415c06c2da422fff34f67ba366d9d7c8b61884 (diff) | |
download | bcm5719-llvm-8337d4462f77ea621657cae58133599f667ce248.tar.gz bcm5719-llvm-8337d4462f77ea621657cae58133599f667ce248.zip |
Know the opcode name of the select instruction
llvm-svn: 12324
Diffstat (limited to 'llvm/lib/VMCore/Instruction.cpp')
-rw-r--r-- | llvm/lib/VMCore/Instruction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/VMCore/Instruction.cpp b/llvm/lib/VMCore/Instruction.cpp index b009c01eecb..0de34b5bd54 100644 --- a/llvm/lib/VMCore/Instruction.cpp +++ b/llvm/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"; |