fix define-runtime-paths' and raco exe'

Cross-module optimization started inlining the `#f'
value for the table that `raco exe' replaces.
This commit is contained in:
Matthew Flatt 2011-08-25 08:08:14 -06:00
parent 7bb8c6c4b3
commit 495c0da189

View File

@ -1,3 +1,5 @@
(module runtime-path-table mzscheme
(provide table)
(define table #f))
(define table #f)
;; So table definition is not inlined across modules:
(set! table #f))