Make iostream #inclusion explicit
[oota-llvm.git] / lib / VMCore / ValueTypes.cpp
index a4584dfe7a7fff27a5a32d7576792e312f1b3e81..c604bdbc0bc484da0ea01674fd38c5ddcf01992a 100644 (file)
@@ -1,10 +1,10 @@
 //===-- ValueTypes.cpp - Implementation of MVT::ValueType methods ---------===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file implements methods in the CodeGen/ValueTypes.h header.
@@ -32,6 +32,14 @@ const char *MVT::getValueTypeString(MVT::ValueType VT) {
   case MVT::f128:  return "f128";
   case MVT::isVoid:return "isVoid";
   case MVT::Other: return "ch";
+  case MVT::Flag:  return "flag";
+  case MVT::Vector:return "vec";
+  case MVT::v16i8: return "v16i8";
+  case MVT::v8i16: return "v8i16";
+  case MVT::v4i32: return "v4i32";
+  case MVT::v2i64: return "v2i64";
+  case MVT::v4f32: return "v4f32";
+  case MVT::v2f64: return "v2f64";
   }
 }