Skip to content
Snippets Groups Projects
Commit 3038d456 authored by ram's avatar ram
Browse files

Don't enhance safety under :small anymore except for ir1tran and debug.

Debug info is still selectively enhanced.
parent c031b263
No related branches found
No related tags found
No related merge requests found
...@@ -70,8 +70,11 @@ ...@@ -70,8 +70,11 @@
(comf "target:compiler/main") (comf "target:compiler/main")
(with-compilation-unit (with-compilation-unit
(:optimize '(optimize (debug 2) (safety 1))) (:optimize '(optimize (safety 1)))
(comf "target:compiler/ir1tran") (comf "target:compiler/ir1tran"))
(with-compilation-unit
(:optimize '(optimize (debug 2)))
(comf "target:compiler/ir1util") (comf "target:compiler/ir1util")
(comf "target:compiler/ir1opt")) (comf "target:compiler/ir1opt"))
...@@ -141,22 +144,22 @@ ...@@ -141,22 +144,22 @@
(comf "target:compiler/ltv") (comf "target:compiler/ltv")
(comf "target:compiler/gtn") (comf "target:compiler/gtn")
(with-compilation-unit (with-compilation-unit
(:optimize '(optimize (debug 2) (safety 1))) (:optimize '(optimize (debug 2)))
(comf "target:compiler/ltn")) (comf "target:compiler/ltn"))
(comf "target:compiler/stack") (comf "target:compiler/stack")
(comf "target:compiler/control") (comf "target:compiler/control")
(comf "target:compiler/entry") (comf "target:compiler/entry")
(with-compilation-unit (with-compilation-unit
(:optimize '(optimize (debug 2) (safety 1))) (:optimize '(optimize (debug 2)))
(comf "target:compiler/ir2tran") (comf "target:compiler/ir2tran")
(comf "target:compiler/generic/vm-ir2tran")) (comf "target:compiler/generic/vm-ir2tran"))
(comf "target:compiler/copyprop") (comf "target:compiler/copyprop")
(with-compilation-unit (with-compilation-unit
(:optimize '(optimize (debug 2) (safety 1))) (:optimize '(optimize (debug 2)))
(comf "target:compiler/represent")) (comf "target:compiler/represent"))
(comf "target:compiler/generic/vm-tran") (comf "target:compiler/generic/vm-tran")
(with-compilation-unit (with-compilation-unit
(:optimize '(optimize (debug 2) (safety 1))) (:optimize '(optimize (debug 2)))
(comf "target:compiler/pack")) (comf "target:compiler/pack"))
(comf "target:compiler/codegen") (comf "target:compiler/codegen")
(with-compilation-unit (with-compilation-unit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment