diff --git a/collects/typed-racket/optimizer/tool/report.rkt b/collects/typed-racket/optimizer/tool/report.rkt index 501f3c4ce7..d3b0b124b1 100644 --- a/collects/typed-racket/optimizer/tool/report.rkt +++ b/collects/typed-racket/optimizer/tool/report.rkt @@ -17,7 +17,9 @@ (if profile (report-hidden-costs info-log profile hot-functions) '()))) - (report-inlining mzc-log profile hot-functions))) + (if profile ; inlining reports have too low a SNR to be shown w/o profiling + (report-inlining mzc-log profile hot-functions) + '()))) ;; Returns a report-entry or #f, which means prune.