diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-04-13 10:02:54 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-04-13 10:02:54 +0000 |
commit | 9c08b39781f0b4268f32aba65128c8700e3131f8 (patch) | |
tree | 7ca70cb291c9d5a0b37c91f2a677c09291906846 /lib/CodeGen/CGBuiltin.cpp | |
parent | 866849498461cf9022316034516475188b25955b (diff) |
It looks like the FreeBSD buildbot needs this for the builtins-x86.c test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGBuiltin.cpp')
-rw-r--r-- | lib/CodeGen/CGBuiltin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CGBuiltin.cpp b/lib/CodeGen/CGBuiltin.cpp index 72a8ef8a5d..fce2bf40ee 100644 --- a/lib/CodeGen/CGBuiltin.cpp +++ b/lib/CodeGen/CGBuiltin.cpp @@ -2092,6 +2092,8 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID, // If palignr is shifting the pair of vectors more than 32 bytes, emit zero. return llvm::Constant::getNullValue(ConvertType(E->getType())); } + case X86::BI__builtin_ia32_loadups: + case X86::BI__builtin_ia32_loadupd: case X86::BI__builtin_ia32_loaddqu: { const llvm::Type *VecTy = ConvertType(E->getType()); const llvm::Type *IntTy = llvm::IntegerType::get(getLLVMContext(), 128); |