diff options
author | Robert Bocchino <bocchino@illinois.edu> | 2006-01-17 20:07:22 +0000 |
---|---|---|
committer | Robert Bocchino <bocchino@illinois.edu> | 2006-01-17 20:07:22 +0000 |
commit | ca27f0320bd5001db59ba22d51d80c93b20afc59 (patch) | |
tree | 5f954ea6b67c387ae8299eafb605f841a40d3cc4 /llvm/lib/VMCore/Instruction.cpp | |
parent | e6336a9b69aff51cf511712e485c11fdc2fdc3a6 (diff) | |
download | bcm5719-llvm-ca27f0320bd5001db59ba22d51d80c93b20afc59.tar.gz bcm5719-llvm-ca27f0320bd5001db59ba22d51d80c93b20afc59.zip |
VMCore support for the insertelement operation.
llvm-svn: 25408
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 8b13e6e75b7..a44b5e4b11a 100644 --- a/llvm/lib/VMCore/Instruction.cpp +++ b/llvm/lib/VMCore/Instruction.cpp @@ -121,6 +121,7 @@ const char *Instruction::getOpcodeName(unsigned OpCode) { case Shr: return "shr"; case VAArg: return "va_arg"; case ExtractElement: return "extractelement"; + case InsertElement: return "insertelement"; default: return "<Invalid operator> "; } |