aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/micro-bunzip
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-01-30 17:17:04 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-01-30 17:17:04 +0100
commite1c8d92fc6460b9c44b5aef19b2d5e0a74d1e58a (patch)
treecb6ed67636a6a6b5b28e51fafbc3ec9d445ec504 /test/monniaux/micro-bunzip
parentd48a2f396dede39eae20fcfe551bb11832360a5b (diff)
downloadcompcert-kvx-e1c8d92fc6460b9c44b5aef19b2d5e0a74d1e58a.tar.gz
compcert-kvx-e1c8d92fc6460b9c44b5aef19b2d5e0a74d1e58a.zip
remove cruft
Diffstat (limited to 'test/monniaux/micro-bunzip')
-rw-r--r--test/monniaux/micro-bunzip/Makefile2
-rw-r--r--test/monniaux/micro-bunzip/micro-bunzip.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/monniaux/micro-bunzip/Makefile b/test/monniaux/micro-bunzip/Makefile
index ccd21360..2f06e4c2 100644
--- a/test/monniaux/micro-bunzip/Makefile
+++ b/test/monniaux/micro-bunzip/Makefile
@@ -9,7 +9,7 @@ micro-bunzip.host: micro-bunzip.c ../clock.c
$(CC) $+ -o $@
micro-bunzip.ccomp.k1c: micro-bunzip.c ../clock.gcc.k1c.o
- ../../../ccomp -Wall -O3 $+ -U __SIZEOF_INT128__ -o $@
+ ../../../ccomp -Wall -O3 $+ -o $@
# TODO: -O3 buggy??
micro-bunzip.gcc.k1c: micro-bunzip.c ../clock.gcc.k1c.o
diff --git a/test/monniaux/micro-bunzip/micro-bunzip.c b/test/monniaux/micro-bunzip/micro-bunzip.c
index 33144ba5..532fc7b5 100644
--- a/test/monniaux/micro-bunzip/micro-bunzip.c
+++ b/test/monniaux/micro-bunzip/micro-bunzip.c
@@ -522,6 +522,6 @@ int main(int argc, char *argv[])
char *c=uncompressStream(0,1);
extern FILE *fdopen(int fd, const char *mode);
FILE *err = fdopen(2, "w");
- fprintf(err, "%s\ncycles=%llu\n", c ? c : "Completed OK", get_total_clock());
+ fprintf(err, "%s\ncycles=%lu\n", c ? c : "Completed OK", get_total_clock());
return 0;
}