From: Craig Topper Date: Thu, 1 Aug 2013 04:51:48 +0000 (+0000) Subject: Remove broken and unnecessary vec3 handling from VisitShuffleVectorExpr. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=72c422cc2b27c87b4a217ab01a9d8bfd836a30be;p=clang Remove broken and unnecessary vec3 handling from VisitShuffleVectorExpr. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@187558 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index d0b4ef4ef0..d3250ea646 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -969,13 +969,9 @@ Value *ScalarExprEmitter::VisitShuffleVectorExpr(ShuffleVectorExpr *E) { Value* V1 = CGF.EmitScalarExpr(E->getExpr(0)); Value* V2 = CGF.EmitScalarExpr(E->getExpr(1)); - // Handle vec3 special since the index will be off by one for the RHS. - llvm::VectorType *VTy = cast(V1->getType()); SmallVector indices; - for (unsigned i = 2; i < E->getNumSubExprs(); i++) { + for (unsigned i = 2; i < E->getNumSubExprs(); ++i) { unsigned Idx = E->getShuffleMaskIdx(CGF.getContext(), i-2); - if (VTy->getNumElements() == 3 && Idx > 3) - Idx -= 1; indices.push_back(Builder.getInt32(Idx)); }