fix bug in jit dump output
authorAndy Ayers <andya@microsoft.com>
Tue, 7 Aug 2018 18:25:00 +0000 (11:25 -0700)
committerAndy Ayers <andya@microsoft.com>
Tue, 7 Aug 2018 18:25:00 +0000 (11:25 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/d050a4eae353ae82fb56f34aa8f0afb772fc3181

src/coreclr/src/jit/lclvars.cpp

index f65823c7d553cc710042bb1c7a9b66df09a950a9..acbcbfa8914584ba55d59a543a8d95c1ab9146e6 100644 (file)
@@ -3931,8 +3931,8 @@ void Compiler::lvaMarkLocalVars(BasicBlock* block, bool isRecompute)
         }
     };
 
-    JITDUMP("\n*** %s local variables in block BB%02u (weight=%s)\n", block->bbNum,
-            isRecompute ? "recomputing" : "marking", refCntWtd2str(block->getBBWeight(this)));
+    JITDUMP("\n*** %s local variables in block BB%02u (weight=%s)\n", isRecompute ? "recomputing" : "marking",
+            block->bbNum, refCntWtd2str(block->getBBWeight(this)));
 
     for (GenTreeStmt* stmt = block->FirstNonPhiDef(); stmt != nullptr; stmt = stmt->getNextStmt())
     {