[llvm-commits] CVS: llvm/lib/CodeGen/ValueTypes.cpp

Nate Begeman natebegeman at mac.com
Mon Nov 28 21:45:44 PST 2005



Changes in directory llvm/lib/CodeGen:

ValueTypes.cpp updated: 1.5 -> 1.6
---
Log message:

Add the majority of the vector machien value types we expect to support,
and make a few changes to the legalization machinery to support more than
16 types.


---
Diffs of the changes:  (+6 -0)

 ValueTypes.cpp |    6 ++++++
 1 files changed, 6 insertions(+)


Index: llvm/lib/CodeGen/ValueTypes.cpp
diff -u llvm/lib/CodeGen/ValueTypes.cpp:1.5 llvm/lib/CodeGen/ValueTypes.cpp:1.6
--- llvm/lib/CodeGen/ValueTypes.cpp:1.5	Fri Nov 18 18:36:38 2005
+++ llvm/lib/CodeGen/ValueTypes.cpp	Mon Nov 28 23:45:28 2005
@@ -34,6 +34,12 @@
   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";
   }
 }
 






More information about the llvm-commits mailing list