aboutsummaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-11-04 08:53:54 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-11-04 08:53:54 +0100
commit1eaa5dadb71eaaad8ba6e6f8293ee9dbb7e0a03d (patch)
tree5fc5ea0ec9dfdb65b0e1142ae7d6919a7abf050b /backend
parentbabf0034fed52715ddeefdee4b8d0a365c1247ce (diff)
parentdecb2ce78a04fe4432aead78ca0165106fd4d26d (diff)
downloadcompcert-kvx-1eaa5dadb71eaaad8ba6e6f8293ee9dbb7e0a03d.tar.gz
compcert-kvx-1eaa5dadb71eaaad8ba6e6f8293ee9dbb7e0a03d.zip
Merge remote-tracking branch 'origin/kvx-work' into kvx-test-prepass
Diffstat (limited to 'backend')
-rw-r--r--backend/CSE3analysisaux.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/CSE3analysisaux.ml b/backend/CSE3analysisaux.ml
index 6e190d35..bd4ca20a 100644
--- a/backend/CSE3analysisaux.ml
+++ b/backend/CSE3analysisaux.ml
@@ -125,7 +125,8 @@ let refine_invariants
let add_todo (pc : RTL.node) =
todo := IntSet.add (P.to_int pc) !todo in
let update_node (pc : RTL.node) =
- Printf.printf "updating node %d\n" (P.to_int pc);
+ (if !Clflags.option_debug_compcert > 9
+ then Printf.printf "updating node %d\n" (P.to_int pc));
if not (peq pc entrypoint)
then
let cur = PMap.get pc !invariants in