Fix whitespace formatting
authorBrian Sullivan <briansul@microsoft.com>
Fri, 16 Feb 2018 23:32:35 +0000 (15:32 -0800)
committerBrian Sullivan <briansul@microsoft.com>
Fri, 16 Feb 2018 23:32:35 +0000 (15:32 -0800)
src/jit/optcse.cpp

index 721bb78..35d0dc2 100644 (file)
@@ -328,7 +328,7 @@ Compiler::fgWalkResult Compiler::optUnmarkCSEs(GenTree** pTree, fgWalkData* data
         // This tree and all of its sub-trees will be kept
         //
         *wbKeepList = comp->gtBuildCommaList(*wbKeepList, tree);
-        
+
         return WALK_SKIP_SUBTREES;
     }
 
@@ -412,7 +412,7 @@ Compiler::fgWalkResult Compiler::optHasCSEdefWithSideeffect(GenTree** pTree, fgW
         //
         if (comp->gtTreeHasSideEffects(tree, GTF_PERSISTENT_SIDE_EFFECTS_IN_CSE))
         {
-            // This nested CSE def contains a persistent side effect 
+            // This nested CSE def contains a persistent side effect
             // We just abort now as this case is problematic.
             //
             return WALK_ABORT;
@@ -421,7 +421,6 @@ Compiler::fgWalkResult Compiler::optHasCSEdefWithSideeffect(GenTree** pTree, fgW
     return WALK_CONTINUE;
 }
 
-
 Compiler::fgWalkResult Compiler::optCSE_MaskHelper(GenTree** pTree, fgWalkData* walkData)
 {
     GenTree*         tree      = *pTree;
@@ -2536,7 +2535,7 @@ bool Compiler::optValnumCSE_UnmarkCSEs(GenTree* deadTree, GenTree** wbKeepList)
     // and is not deleted and does not have its ref counts decremented
     // We communicate this value using the walkData.pCallbackData field
     //
-    
+
     Compiler::fgWalkResult result = fgWalkTreePre(&deadTree, optUnmarkCSEs, (void*)wbKeepList);
     assert(result != WALK_ABORT);