Fixing format problems
authorBrian Bohe <t-brboh@microsoft.com>
Fri, 21 Feb 2020 22:51:13 +0000 (14:51 -0800)
committerBrian Bohe <t-brboh@microsoft.com>
Fri, 21 Feb 2020 22:51:13 +0000 (14:51 -0800)
src/coreclr/src/jit/codegencommon.cpp
src/coreclr/src/jit/emit.cpp

index 0bcd836..703b8e6 100644 (file)
@@ -11466,8 +11466,7 @@ void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::startLiveRang
     // Is the first "VariableLiveRange" or the previous one has been closed so its "m_EndEmitLocation" is valid
     noway_assert(m_VariableLiveRanges->empty() || m_VariableLiveRanges->back().m_EndEmitLocation.Valid());
 
-    if (!m_VariableLiveRanges->empty() &&
-        m_VariableLiveRanges->back().m_EndEmitLocation.IsPreviousIns(emit) &&
+    if (!m_VariableLiveRanges->empty() && m_VariableLiveRanges->back().m_EndEmitLocation.IsPreviousIns(emit) &&
         siVarLoc::Equals(&varLocation, &(m_VariableLiveRanges->back().m_VarLocation)))
     {
         // The variable is being born at the exactly same place just one assembly instructtion.
@@ -11480,7 +11479,7 @@ void CodeGenInterface::VariableLiveKeeper::VariableLiveDescriptor::startLiveRang
         m_VariableLiveRanges->emplace_back(varLocation, emitLocation(), emitLocation());
         m_VariableLiveRanges->back().m_StartEmitLocation.CaptureLocation(emit);
     }
-    
+
 #ifdef DEBUG
     if (!m_VariableLifeBarrier->hasLiveRangesToDump())
     {
index a95e70c..9770add 100644 (file)
@@ -69,7 +69,7 @@ UNATIVE_OFFSET emitLocation::GetFuncletPrologOffset(emitter* emit) const
 bool emitLocation::IsPreviousIns(const emitter* emit) const
 {
     assert(Valid());
-    bool sameGroup = ig == emit->emitCurIG;
+    bool sameGroup  = ig == emit->emitCurIG;
     bool sameInsNum = emitGetInsNumFromCodePos(codePos) == emitGetInsNumFromCodePos(emit->emitCurOffset()) - 1;
     return sameGroup && sameInsNum;
 }