Fix indentation of wrapped line for readability. No functional change.
authorCraig Topper <craig.topper@gmail.com>
Wed, 23 May 2012 03:59:53 +0000 (03:59 +0000)
committerCraig Topper <craig.topper@gmail.com>
Wed, 23 May 2012 03:59:53 +0000 (03:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157309 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86CodeEmitter.cpp

index fa31265b106d9e5117ea99bc540d555508b90d52..40fe395092f409fa2361cfd7ac059a27246f0d7c 100644 (file)
@@ -171,7 +171,7 @@ static unsigned determineREX(const MachineInstr &MI) {
   unsigned NumOps = Desc.getNumOperands();
   if (NumOps) {
     bool isTwoAddr = NumOps > 1 &&
-    Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
+      Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
 
     // If it accesses SPL, BPL, SIL, or DIL, then it requires a 0x40 REX prefix.
     unsigned i = isTwoAddr ? 1 : 0;