From 7b102c046af98ebfda3f05f7f1f60c31654ba1f9 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Fri, 28 Jul 2017 20:10:14 -0700 Subject: [PATCH] Format code. --- src/jit/regset.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jit/regset.cpp b/src/jit/regset.cpp index 20551fa..09d53c8 100644 --- a/src/jit/regset.cpp +++ b/src/jit/regset.cpp @@ -2669,7 +2669,7 @@ void RegSet::rsUnspillRegPair(GenTreePtr tree, regMaskTP needReg, KeepReg keepRe // Temporarily lock the high part if necessary. If this register is a multi-use register that is shared // with another tree, the register may already be locked. const regMaskTP regHiMask = genRegMask(regHi); - const bool lockReg = (rsMaskLock & regHiMask) == 0; + const bool lockReg = (rsMaskLock & regHiMask) == 0; if (lockReg) { rsLockUsedReg(regHiMask); @@ -2710,7 +2710,7 @@ void RegSet::rsUnspillRegPair(GenTreePtr tree, regMaskTP needReg, KeepReg keepRe // Temporarily lock the low part if necessary. If this register is a multi-use register that is shared // with another tree, the register may already be locked. const regMaskTP regLoMask = genRegMask(regLo); - const bool lockReg = (rsMaskLock & regLoMask) == 0; + const bool lockReg = (rsMaskLock & regLoMask) == 0; if (lockReg) { rsLockReg(regLoMask, ®LoUsed); -- 2.7.4