summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2018-11-30 12:42:15 -0800
committerCarol Eidt <carol.eidt@microsoft.com>2018-11-30 12:59:50 -0800
commite5be39cda1772b68e403210e60dd4253be0a6717 (patch)
tree6c4f53a4a626b5adab83d808f071560eb530bc5c
parent0cc4b0c3e6207fcae9ffde81096f86c40d2634b4 (diff)
downloadcoreclr-e5be39cda1772b68e403210e60dd4253be0a6717.tar.gz
coreclr-e5be39cda1772b68e403210e60dd4253be0a6717.tar.bz2
coreclr-e5be39cda1772b68e403210e60dd4253be0a6717.zip
Fix dump in LvaUpdateClass
It was failing, presumably because of too many or too large args, so break it up a abit.
-rw-r--r--src/jit/lclvars.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jit/lclvars.cpp b/src/jit/lclvars.cpp
index 9217fe7610..6bd1501360 100644
--- a/src/jit/lclvars.cpp
+++ b/src/jit/lclvars.cpp
@@ -2732,10 +2732,10 @@ void Compiler::lvaUpdateClass(unsigned varNum, CORINFO_CLASS_HANDLE clsHnd, bool
shouldUpdate = true;
}
- JITDUMP("\nlvaUpdateClass:%s Updating class for V%02u from (%p) %s%s to (%p) %s%s\n", varNum,
- shouldUpdate ? "" : " NOT", dspPtr(varDsc->lvClassHnd), info.compCompHnd->getClassName(varDsc->lvClassHnd),
- varDsc->lvClassIsExact ? " [exact]" : "", dspPtr(clsHnd), info.compCompHnd->getClassName(clsHnd),
- isExact ? " [exact]" : "");
+ JITDUMP("\nlvaUpdateClass:%s Updating class for V%02u", shouldUpdate ? "" : " NOT", varNum);
+ JITDUMP(" from(%p) %s%s", dspPtr(varDsc->lvClassHnd), info.compCompHnd->getClassName(varDsc->lvClassHnd),
+ varDsc->lvClassIsExact ? " [exact]" : "");
+ JITDUMP(" to(%p) %s%s\n", dspPtr(clsHnd), info.compCompHnd->getClassName(clsHnd), isExact ? " [exact]" : "");
if (shouldUpdate)
{