commit | f70da10697770f1d4015d7ecd35fd8664c4d0228 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu May 08 02:44:12 2003 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu May 08 02:44:12 2003 +0000 |
tree | 191647225f0db537df7c99a14fa5cf8fe2a55141 | |
parent | e10061e202d0b7546194da30de66db24a51966b2 [diff] [blame] |
Add support for the new va_arg instruction llvm-svn: 6029
diff --git a/llvm/lib/VMCore/Instruction.cpp b/llvm/lib/VMCore/Instruction.cpp index 01381fa..ce1423a 100644 --- a/llvm/lib/VMCore/Instruction.cpp +++ b/llvm/lib/VMCore/Instruction.cpp
@@ -91,7 +91,8 @@ case Call: return "call"; case Shl: return "shl"; case Shr: return "shr"; - + case VarArg: return "va_arg"; + default: return "<Invalid operator> "; }