summaryrefslogtreecommitdiff
path: root/src/profile.ml
diff options
context:
space:
mode:
authorAlasdair Armstrong2019-01-10 17:10:19 +0000
committerAlasdair Armstrong2019-01-10 17:10:19 +0000
commit05e6058795e71cf1543e282752cbf95e471894cc (patch)
tree4fb77659a0234ccfe12ce955e5048970fb73f6cb /src/profile.ml
parenteb837a0ae70ef5dc8a2a3a28d59a736c57a952b3 (diff)
Fixes so 8.5 with vector instructions compiles to C
Diffstat (limited to 'src/profile.ml')
-rw-r--r--src/profile.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profile.ml b/src/profile.ml
index cb374403..1a8bd30b 100644
--- a/src/profile.ml
+++ b/src/profile.ml
@@ -83,7 +83,7 @@ let finish msg t =
if !opt_profile then
begin match !profile_stack with
| p :: ps ->
- prerr_endline (Printf.sprintf "%s %s: %fs" Util.("Profile" |> magenta |> clear) msg (Sys.time () -. t));
+ prerr_endline (Printf.sprintf "%s %s: %fs" Util.("Profiled" |> magenta |> clear) msg (Sys.time () -. t));
prerr_endline (Printf.sprintf " Z3 calls: %d, Z3 time: %fs" p.z3_calls p.z3_time);
profile_stack := ps
| [] -> ()