aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorMaxime Dénès2020-04-01 11:09:13 +0200
committerMaxime Dénès2020-04-01 11:09:13 +0200
commit828b79f744ffc1f292a77a80553906544c1c0cfb (patch)
treef267db7f0d4895e14548281d59e61cd11379ebf4 /tactics
parenteacddd7054ddc04eafc8292ae80be84649b940d1 (diff)
parentacba2419a4cebb2b55bad2aefa2062640ffe8828 (diff)
Merge PR #11306: Centralize the flag handling native compilation.
Ack-by: SkySkimmer Reviewed-by: maximedenes
Diffstat (limited to 'tactics')
-rw-r--r--tactics/redexpr.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/redexpr.ml b/tactics/redexpr.ml
index 250c80d9a5..db09a2e69e 100644
--- a/tactics/redexpr.ml
+++ b/tactics/redexpr.ml
@@ -37,7 +37,7 @@ let warn_native_compute_disabled =
strbrk "native_compute disabled at configure time; falling back to vm_compute.")
let cbv_native env sigma c =
- if Coq_config.native_compiler then
+ if Flags.get_native_compiler () then
let ctyp = Retyping.get_type_of env sigma c in
Nativenorm.native_norm env sigma c ctyp
else