aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/heapsort
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-07-17 12:03:39 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-07-17 12:03:39 +0200
commitb288b587378984c3c419d26a13dcf93686d1b779 (patch)
tree623679ad5dd5325f4d0d11d2d85d43a638d9ad33 /test/monniaux/heapsort
parentc1330c1f6863d4029bfa965b4151e629d72a2217 (diff)
downloadcompcert-kvx-b288b587378984c3c419d26a13dcf93686d1b779.tar.gz
compcert-kvx-b288b587378984c3c419d26a13dcf93686d1b779.zip
All working benches ported
Diffstat (limited to 'test/monniaux/heapsort')
-rw-r--r--test/monniaux/heapsort/heapsort_run.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monniaux/heapsort/heapsort_run.c b/test/monniaux/heapsort/heapsort_run.c
index 053822a3..8f2d3fe0 100644
--- a/test/monniaux/heapsort/heapsort_run.c
+++ b/test/monniaux/heapsort/heapsort_run.c
@@ -13,7 +13,7 @@ int main (void) {
heapsort(vec, len);
heapsort_time = get_cycle() - heapsort_time;
printf("sorted=%s\n"
- "heapsort_time:%" PRIu64 "\n",
+ "time cycles:%" PRIu64 "\n",
data_vec_is_sorted(vec, len)?"true":"false",
heapsort_time);
free(vec);