diff options
author | Andy Ayers <andya@microsoft.com> | 2018-08-07 11:25:00 -0700 |
---|---|---|
committer | Andy Ayers <andya@microsoft.com> | 2018-08-07 11:25:00 -0700 |
commit | d050a4eae353ae82fb56f34aa8f0afb772fc3181 (patch) | |
tree | c141c69decd8c5139e0d61f64d40cc10733f2f3a /src | |
parent | aa1d28a7b24f896df4a389db5f8fa984e84764b7 (diff) | |
download | coreclr-d050a4eae353ae82fb56f34aa8f0afb772fc3181.tar.gz coreclr-d050a4eae353ae82fb56f34aa8f0afb772fc3181.tar.bz2 coreclr-d050a4eae353ae82fb56f34aa8f0afb772fc3181.zip |
fix bug in jit dump output
Diffstat (limited to 'src')
-rw-r--r-- | src/jit/lclvars.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/lclvars.cpp b/src/jit/lclvars.cpp index f65823c7d5..acbcbfa891 100644 --- a/src/jit/lclvars.cpp +++ b/src/jit/lclvars.cpp @@ -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()) { |