diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-18 05:57:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-18 05:57:43 +0000 |
commit | 4d45bd007d0c3a3a6e5b3876b67fd495acb0db2b (patch) | |
tree | cb11e8a60837799547960e7f7b8347a431994934 /lib/VMCore/Instruction.cpp | |
parent | cda965e28a3411cb9e41f58cddc4c9c1afa0e8a1 (diff) |
Add support for the new varargs intrinsics and instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9226 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Instruction.cpp')
-rw-r--r-- | lib/VMCore/Instruction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index e5e6501bd3..179a988eb5 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -92,7 +92,8 @@ const char *Instruction::getOpcodeName(unsigned OpCode) { case Call: return "call"; case Shl: return "shl"; case Shr: return "shr"; - case VarArg: return "va_arg"; + case VANext: return "vanext"; + case VAArg: return "vaarg"; default: return "<Invalid operator> "; } |