aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-13 23:41:38 +0000
committerChris Lattner <sabre@nondot.org>2007-02-13 23:41:38 +0000
commitf839ce7d03ce3ec6c7e36b71267f43a6b6aefeaa (patch)
tree3c6c1c8868ce3429ed934b1e0b7d034ea25f596f /lib/CodeGen/SelectionDAG/TargetLowering.cpp
parent727c2358400df54dd4b47eed042ddecb347f6880 (diff)
Fix PR1198, by adding initial i128 support. Patch by Dan Gohman.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34256 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/TargetLowering.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index d43e6a6357..64455a1491 100644
--- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/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;