Add support for the new varargs intrinsics and instructions
[oota-llvm.git] / lib / VMCore / Instruction.cpp
index e5e6501bd3d74f76d7d170cc1003247fddf0c279..179a988eb56d3873c14f9037e0891203924a51ad 100644 (file)
@@ -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> ";
   }