summaryrefslogtreecommitdiff
path: root/src/jit/compiler.cpp
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2018-11-14 14:20:26 -0800
committerBrian Sullivan <briansul@microsoft.com>2018-11-14 14:20:26 -0800
commit2b647199723b9202115e920463666851c3f71964 (patch)
tree2e83f9b094bbe70b6df0037fe9e7cd93f13ced38 /src/jit/compiler.cpp
parent80bebbf92ea66b0166a2bcc1fdcc93e765cdf8a0 (diff)
downloadcoreclr-2b647199723b9202115e920463666851c3f71964.tar.gz
coreclr-2b647199723b9202115e920463666851c3f71964.tar.bz2
coreclr-2b647199723b9202115e920463666851c3f71964.zip
Use correct printf type specifier
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 7f47d633b8..e478510778 100644
--- a/src/jit/compiler.cpp
+++ b/src/jit/compiler.cpp
@@ -8175,7 +8175,7 @@ void JitTimer::PrintCsvMethodStats(Compiler* comp)
comp->m_inlineStrategy->DumpCsvData(fp);
- fprintf(fp, "%Iu,", comp->info.compNativeCodeSize);
+ fprintf(fp, "%u,", comp->info.compNativeCodeSize);
fprintf(fp, "%Iu,", comp->compInfoBlkSize);
fprintf(fp, "%Iu,", comp->compGetArenaAllocator()->getTotalBytesAllocated());
fprintf(fp, "%I64u,", m_info.m_totalCycles);