Format code and fix a comment.
authorPat Gavlin <pagavlin@microsoft.com>
Mon, 1 May 2017 17:14:48 +0000 (10:14 -0700)
committerPat Gavlin <pagavlin@microsoft.com>
Mon, 1 May 2017 17:14:48 +0000 (10:14 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/6376081c1293a7df4a2a4f24c8b7d3739c8ba40d

src/coreclr/src/jit/flowgraph.cpp
src/coreclr/src/jit/importer.cpp

index 6b35cd0..f04cdf7 100644 (file)
@@ -17055,8 +17055,8 @@ bool Compiler::fgCheckEHCanInsertAfterBlock(BasicBlock* blk, unsigned regionInde
 //
 // Return Value:
 //    A block with the desired characteristics, so the new block will be inserted after this one.
-//    If there is no suitable location, return nullptr. This should basically never happen except in the case of
-//    single-block filters.
+//    If there is no suitable location, return nullptr. This should basically never happen.
+//
 BasicBlock* Compiler::fgFindInsertPoint(unsigned    regionIndex,
                                         bool        putInTryRegion,
                                         BasicBlock* startBlk,
index 8be54e9..9737c13 100644 (file)
@@ -2443,7 +2443,7 @@ BasicBlock* Compiler::impPushCatchArgOnStack(BasicBlock* hndBlk, CORINFO_CLASS_H
 #if defined(JIT32_GCENCODER)
     const bool forceInsertNewBlock = isSingleBlockFilter || compStressCompile(STRESS_CATCH_ARG, 5);
 #else
-    const bool forceInsertNewBlock = compStressCompile(STRESS_CATCH_ARG, 5);
+    const bool forceInsertNewBlock                                     = compStressCompile(STRESS_CATCH_ARG, 5);
 #endif // defined(JIT32_GCENCODER)
 
     /* Spill GT_CATCH_ARG to a temp if there are jumps to the beginning of the handler */