diff options
author | Dale Johannesen <dalej@apple.com> | 2010-09-15 00:52:23 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2010-09-15 00:52:23 +0000 |
commit | 29fc6f35a5a284e0c304b1877e9acf040bfca339 (patch) | |
tree | a819580fd36e4d28f6e23a947c14b5cb6b6870f9 /lib/Target/TargetData.cpp | |
parent | 49ddd3a1a4b75f1181e0bd3faae4b50950e6ff53 (diff) |
Add x86MMX a few more places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetData.cpp')
-rw-r--r-- | lib/Target/TargetData.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/TargetData.cpp b/lib/Target/TargetData.cpp index 74e95e779b..0a282c38c0 100644 --- a/lib/Target/TargetData.cpp +++ b/lib/Target/TargetData.cpp @@ -524,6 +524,7 @@ unsigned TargetData::getAlignment(const Type *Ty, bool abi_or_pref) const { case Type::X86_FP80TyID: AlignType = FLOAT_ALIGN; break; + case Type::X86_MMXTyID: case Type::VectorTyID: AlignType = VECTOR_ALIGN; break; |