From 0e9837a38519b643731202755a351ef828e73f61 Mon Sep 17 00:00:00 2001 From: Hao Liu Date: Thu, 15 Aug 2013 11:38:54 +0000 Subject: [PATCH] Fix the build failure of Realease version llvm-svn: 188456 --- clang/lib/CodeGen/CGBuiltin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index def818f6bfb9..56abba3c5e9f 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/lib/CodeGen/CGBuiltin.cpp @@ -1623,7 +1623,7 @@ static llvm::VectorType *GetNeonType(CodeGenFunction *CGF, static Value *EmitExtendedSHL(CodeGenFunction &CGF, SmallVectorImpl &Ops, llvm::VectorType *VTy, bool usgn, bool isHigh) { - IRBuilder<> Builder = CGF.Builder; + CGBuilderTy Builder = CGF.Builder; if (isHigh){ unsigned NumElts = VTy->getNumElements(); unsigned EltBits = VTy->getElementType()->getPrimitiveSizeInBits();