[llvm] r371167 - [X86] Fix bad indentation. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 5 22:50:46 PDT 2019


Author: ctopper
Date: Thu Sep  5 22:50:46 2019
New Revision: 371167

URL: http://llvm.org/viewvc/llvm-project?rev=371167&view=rev
Log:
[X86] Fix bad indentation. NFC

Modified:
    llvm/trunk/lib/Target/X86/X86FixupBWInsts.cpp

Modified: llvm/trunk/lib/Target/X86/X86FixupBWInsts.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86FixupBWInsts.cpp?rev=371167&r1=371166&r2=371167&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86FixupBWInsts.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86FixupBWInsts.cpp Thu Sep  5 22:50:46 2019
@@ -247,7 +247,7 @@ bool FixupBWInstPass::getSuperRegDestIfD
     assert((MO.isDef() || MO.isUse()) && "Expected Def or Use only!");
 
     if (MO.isDef() && TRI->isSuperRegisterEq(OrigDestReg, MO.getReg()))
-        IsDefined = true;
+      IsDefined = true;
 
     // If MO is a use of any part of the destination register but is not equal
     // to OrigDestReg or one of its subregisters, we cannot use SuperDestReg.




More information about the llvm-commits mailing list