summaryrefslogtreecommitdiff
path: root/src/jit/compiler.cpp
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2018-11-15 11:32:47 -0800
committerBrian Sullivan <briansul@microsoft.com>2018-11-15 11:32:47 -0800
commitc0f8017835455af60b1cb7735ed34721fcf7b114 (patch)
treea19adc6d2be8768b4635aafca32770959809ca1c /src/jit/compiler.cpp
parent450b3d315c34522a131be267c8a4c915066c788b (diff)
downloadcoreclr-c0f8017835455af60b1cb7735ed34721fcf7b114.tar.gz
coreclr-c0f8017835455af60b1cb7735ed34721fcf7b114.tar.bz2
coreclr-c0f8017835455af60b1cb7735ed34721fcf7b114.zip
Changed back to use m_filtered
Diffstat (limited to 'src/jit/compiler.cpp')
-rw-r--r--src/jit/compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/compiler.cpp b/src/jit/compiler.cpp
index 012ba00029..f394e02aea 100644
--- a/src/jit/compiler.cpp
+++ b/src/jit/compiler.cpp
@@ -7797,7 +7797,7 @@ void CompTimeSummaryInfo::Print(FILE* f)
{
fprintf(f, "\n 'End phase slop' should be very small (if not, there's unattributed time): %9.3f Mcycles = "
"%3.1f%% of total.\n\n",
- m_total.m_parentPhaseEndSlop / 1000000.0, fslop_ms);
+ m_filtered.m_parentPhaseEndSlop / 1000000.0, fslop_ms);
}
}