diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-13 23:41:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-13 23:41:38 +0000 |
commit | d08d31f68ae90f3b60b5e6da8c5567c055768448 (patch) | |
tree | bac316eafab0bdd7f3d75de2dab195b6c3b15994 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 9b600ab5a6091af39efbb90c6ddbb648cf8c50ce (diff) | |
download | bcm5719-llvm-d08d31f68ae90f3b60b5e6da8c5567c055768448.tar.gz bcm5719-llvm-d08d31f68ae90f3b60b5e6da8c5567c055768448.zip |
Fix PR1198, by adding initial i128 support. Patch by Dan Gohman.
llvm-svn: 34256
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index d43e6a63575..64455a14918 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -2200,6 +2200,7 @@ MVT::ValueType TargetLowering::getValueType(const Type *Ty) const { case 16: return MVT::i16; case 32: return MVT::i32; case 64: return MVT::i64; + case 128: return MVT::i128; } break; case Type::FloatTyID: return MVT::f32; |