From fd04963da2f16cf22de5613bb793b0302ea99b70 Mon Sep 17 00:00:00 2001 From: xleroy Date: Wed, 31 Oct 2007 17:09:12 +0000 Subject: Problemes d'alignement des variables globales et a l'interieur de leurs initialiseurs git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@444 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/c/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'test/c/Makefile') diff --git a/test/c/Makefile b/test/c/Makefile index 3f4ea40a..3ee10c94 100644 --- a/test/c/Makefile +++ b/test/c/Makefile @@ -9,10 +9,12 @@ LIBS= TIME=xtime -o /dev/null -mintime 1.0 # Xavier's hack #TIME=time >/dev/null # Otherwise -PROGS=fib integr qsort fft sha1 aes almabench lists \ +BENCHS=fib integr qsort fft sha1 aes almabench lists \ binarytrees fannkuch knucleotide mandelbrot nbody \ nsieve nsievebits spectral +PROGS=$(BENCHS) initializers + all_s: $(PROGS:%=%.s) all: $(PROGS:%=%.compcert) @@ -45,12 +47,12 @@ test_gcc: done time_gcc: - @for i in $(PROGS); do \ + @for i in $(BENCHS); do \ echo -n "$$i: "; $(TIME) ./$$i.gcc; \ done time_compcert: - @for i in $(PROGS); do \ + @for i in $(BENCHS); do \ echo -n "$$i: "; $(TIME) ./$$i.compcert; \ done -- cgit