From: Bill Wendling Date: Wed, 13 Apr 2011 10:02:54 +0000 (+0000) Subject: It looks like the FreeBSD buildbot needs this for the builtins-x86.c test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c08b39781f0b4268f32aba65128c8700e3131f8;p=clang 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 --- 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);