Commit 993d87f4 authored by Clemens Grelck's avatar Clemens Grelck
Browse files

SAA temporarily de-activated by default to keep masterrun running.

Syntax tree sanity checks activated by default in developer version
to indicate problems at an early stage.
Showing with 6 additions and 2 deletions
+6 -2
......@@ -463,7 +463,11 @@ GLOBAL (bool, treecheck, FALSE)
* check syntax tree for consistency with xml specification
*/
#ifdef PRODUCTION
GLOBAL (bool, sancheck, FALSE)
#else /* PRODUCTION */
GLOBAL (bool, sancheck, TRUE)
#endif /* PRODUCTION */
/*
* check syntax tree for structural consistency
*/
......
......@@ -53,7 +53,7 @@ OPTIMIZE ("dfr", dfr, TRUE, TRUE, "dead function removal")
OPTIMIZE ("wlt", wlt, FALSE, FALSE, "with-loop transformation")
OPTIMIZE ("wlf", wlf, TRUE, FALSE, "with-loop folding")
OPTIMIZE ("swlf", swlf, FALSE, FALSE, "symbolic with-loop folding")
OPTIMIZE ("ive", ive, TRUE, TRUE, "index vector elimination (Requires -doisaa)")
OPTIMIZE ("ive", ive, TRUE, TRUE, "index vector elimination (Requires -dosaa)")
OPTIMIZE ("ae", ae, FALSE, FALSE, "array elimination")
OPTIMIZE ("dl", dl, TRUE, FALSE, "distributive law")
OPTIMIZE ("rco", rco, TRUE, TRUE, "reference count optimization")
......@@ -84,7 +84,7 @@ OPTIMIZE ("sisi", sisi, FALSE, FALSE, "signature simplification")
OPTIMIZE ("rtup", rtup, TRUE, FALSE, "reverse type upgrade")
OPTIMIZE ("esd", esd, FALSE, FALSE, "eliminate substraction and division")
OPTIMIZE ("wlprop", wlprop, TRUE, FALSE, " withloop propagation")
OPTIMIZE ("saa", saa, TRUE, FALSE, "use symbolic array attributes")
OPTIMIZE ("saa", saa, FALSE, FALSE, "use symbolic array attributes")
OPTIMIZE ("saaopt", saaopt, FALSE, FALSE,
"use symbolic array attributes in optcycle *EXPERIMENTAL*")
OPTIMIZE ("cyc", cyc, TRUE, TRUE, "run optimization cycle")
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment