Remove tabs.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 29 Apr 2014 21:02:37 +0000 (21:02 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 29 Apr 2014 21:02:37 +0000 (21:02 +0000)
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

lib/Transforms/InstCombine/InstCombineCalls.cpp

index 785d19e45b5a75a9e9702096c6254fe9c4a60124..cc43675360f627118bcd11684f67599b7c0ce4be 100644 (file)
@@ -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;
       }