From: Rafael Espindola Date: Tue, 29 Apr 2014 21:02:37 +0000 (+0000) Subject: Remove tabs. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8263bafd1710a8732321429a0eeb3abe93fc4d65;p=oota-llvm.git Remove tabs. Sorry, new machine and I forgot to change the editor setting. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207578 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/InstCombine/InstCombineCalls.cpp b/lib/Transforms/InstCombine/InstCombineCalls.cpp index 785d19e45b5..cc43675360f 100644 --- a/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -731,10 +731,10 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) { // The intrinsics only read one or two bits, clear the rest. for (unsigned I = 0; I < Size; ++I) { - uint32_t Index = C->getElementAsInteger(I) & 0x3; - if (II->getIntrinsicID() == Intrinsic::x86_avx_vpermilvar_pd || - II->getIntrinsicID() == Intrinsic::x86_avx_vpermilvar_pd_256) - Index >>= 1; + uint32_t Index = C->getElementAsInteger(I) & 0x3; + if (II->getIntrinsicID() == Intrinsic::x86_avx_vpermilvar_pd || + II->getIntrinsicID() == Intrinsic::x86_avx_vpermilvar_pd_256) + Index >>= 1; Indexes[I] = Index; }