diff options
author | Sergey Andreenko <seandree@microsoft.com> | 2018-10-30 16:04:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 16:04:24 -0700 |
commit | 6bdaffad6bc168e3b2620203a3aa17681e167914 (patch) | |
tree | cd4dd4f9e7850e0a1ff63206f21360bd5ddbf7ad /src/jit | |
parent | 4b7f40491acf41a3fd26128a62d3fe0c4fda19ee (diff) | |
download | coreclr-6bdaffad6bc168e3b2620203a3aa17681e167914.tar.gz coreclr-6bdaffad6bc168e3b2620203a3aa17681e167914.tar.bz2 coreclr-6bdaffad6bc168e3b2620203a3aa17681e167914.zip |
Fix printing in `CodeGen::siEndScope`. (#20698)
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/scopeinfo.cpp | 4 |
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... |