summaryrefslogtreecommitdiff
path: root/src/jit/lsra.cpp
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2018-06-29 09:41:16 -0700
committerGitHub <noreply@github.com>2018-06-29 09:41:16 -0700
commit13e760637a4162f825cad6ba6cc27706cb96feef (patch)
tree81895ae29c21dd27ca16353bf625ce6db4c366d6 /src/jit/lsra.cpp
parent65d31999eb89e11a74fe8cbf25982a3ed33a564f (diff)
parent965c96e5971e47a256bbd57ad27b75e6d71843cf (diff)
downloadcoreclr-13e760637a4162f825cad6ba6cc27706cb96feef.tar.gz
coreclr-13e760637a4162f825cad6ba6cc27706cb96feef.tar.bz2
coreclr-13e760637a4162f825cad6ba6cc27706cb96feef.zip
Merge pull request #18696 from CarolEidt/Fix18362
Fix & test for #18362
Diffstat (limited to 'src/jit/lsra.cpp')
-rw-r--r--src/jit/lsra.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jit/lsra.cpp b/src/jit/lsra.cpp
index 27d29dfb47..537aa06835 100644
--- a/src/jit/lsra.cpp
+++ b/src/jit/lsra.cpp
@@ -8728,6 +8728,10 @@ void LinearScan::dumpNodeInfo(GenTree* node, regMaskTP dstCandidates, int srcCou
void LinearScan::dumpDefList()
{
+ if (!VERBOSE)
+ {
+ return;
+ }
JITDUMP("DefList: { ");
bool first = true;
for (RefInfoListNode *listNode = defList.Begin(), *end = defList.End(); listNode != end;