summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2018-10-30 16:04:24 -0700
committerGitHub <noreply@github.com>2018-10-30 16:04:24 -0700
commit6bdaffad6bc168e3b2620203a3aa17681e167914 (patch)
treecd4dd4f9e7850e0a1ff63206f21360bd5ddbf7ad /src
parent4b7f40491acf41a3fd26128a62d3fe0c4fda19ee (diff)
downloadcoreclr-6bdaffad6bc168e3b2620203a3aa17681e167914.tar.gz
coreclr-6bdaffad6bc168e3b2620203a3aa17681e167914.tar.bz2
coreclr-6bdaffad6bc168e3b2620203a3aa17681e167914.zip
Fix printing in `CodeGen::siEndScope`. (#20698)
Diffstat (limited to 'src')
-rw-r--r--src/jit/scopeinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/scopeinfo.cpp b/src/jit/scopeinfo.cpp
index 88e1eef9d5..d70a33b082 100644
--- a/src/jit/scopeinfo.cpp
+++ b/src/jit/scopeinfo.cpp
@@ -259,12 +259,12 @@ void CodeGen::siEndScope(unsigned varNum)
}
}
- JITDUMP("siEndScope: Failed to end scope for V%02u\n");
+ JITDUMP("siEndScope: Failed to end scope for V%02u\n", varNum);
// At this point, we probably have a bad LocalVarTab
if (compiler->opts.compDbgCode)
{
- JITDUMP("...checking var tab validity\n", varNum);
+ JITDUMP("...checking var tab validity\n");
// Note the following assert is saying that we expect
// the VM supplied info to be invalid...