diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-17 19:59:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-17 19:59:51 +0000 |
commit | cfc14c153a3e233c329394f148d83cd6862a51a6 (patch) | |
tree | 29e6ab611b58130e05602bd0a04672ea17774d6e /lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | |
parent | a9f0cc4ced61589c5a045016dc51061af54bac20 (diff) |
add support for 128 bit aggregates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp index 2fe2fefaef..dc99879490 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp @@ -4416,6 +4416,7 @@ struct VISIBILITY_HIDDEN SDISelAsmOperandInfo : case 16: case 32: case 64: + case 128: OpTy = IntegerType::get(BitSize); break; } |