From 6f6a95fdaa8fb72026d23bbfee34493ca2249521 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Fri, 30 Nov 2012 11:36:22 -0500 Subject: [PATCH] Don't reverse accumulated logs. Not necessary anymore. --- collects/typed-racket/optimizer/tool/instrumentation.rkt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/collects/typed-racket/optimizer/tool/instrumentation.rkt b/collects/typed-racket/optimizer/tool/instrumentation.rkt index b87313c852..fd6889815d 100644 --- a/collects/typed-racket/optimizer/tool/instrumentation.rkt +++ b/collects/typed-racket/optimizer/tool/instrumentation.rkt @@ -48,9 +48,7 @@ ;; the same piece of code multiple times. ;; Duplicates are not significant (unlike for inlining logs) and we can ;; prune them. - (values (reverse (remove-duplicates TR-log)) - (reverse mzc-log) - (reverse (remove-duplicates info-log)))) + (values (remove-duplicates TR-log) mzc-log (remove-duplicates info-log))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;