aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Clflags.ml
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2020-03-09 15:16:08 +0100
committerCyril SIX <cyril.six@kalray.eu>2020-03-09 15:16:08 +0100
commitb016de5a1a8230b5a6c51d8e7cd8829d39a4c781 (patch)
treeda167bb86a5eba736db551df7df613eb5201a30c /driver/Clflags.ml
parentec0d767ba602c35e320ee77f2ccd6f513adeb7b6 (diff)
downloadcompcert-kvx-b016de5a1a8230b5a6c51d8e7cd8829d39a4c781.tar.gz
compcert-kvx-b016de5a1a8230b5a6c51d8e7cd8829d39a4c781.zip
[BROKEN] Replacing the boolean -fduplicate option by an integer
To control the threshold for duplication
Diffstat (limited to 'driver/Clflags.ml')
-rw-r--r--driver/Clflags.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/Clflags.ml b/driver/Clflags.ml
index 6d6f1df4..79c0bce0 100644
--- a/driver/Clflags.ml
+++ b/driver/Clflags.ml
@@ -28,8 +28,8 @@ let option_fconstprop = ref true
let option_fcse = ref true
let option_fcse2 = ref true
let option_fredundancy = ref true
-let option_fduplicate = ref false
-let option_finvertcond = ref true (* only active if option_fduplicate is also true *)
+let option_fduplicate = ref 0
+let option_finvertcond = ref true
let option_ftracelinearize = ref false
let option_fpostpass = ref true
let option_fpostpass_sched = ref "list"