From 355b4abcee015c3fae9ac5653c25259e104a886c Mon Sep 17 00:00:00 2001 From: xleroy Date: Sat, 4 Aug 2007 07:27:50 +0000 Subject: Fusion des modifications faites sur les branches "tailcalls" et "smallstep". En particulier: - Semantiques small-step depuis RTL jusqu'a PPC - Cminor independant du processeur - Ajout passes Selection et Reload - Ajout des langages intermediaires CminorSel et LTLin correspondants - Ajout des tailcalls depuis Cminor jusqu'a PPC git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@384 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/cminor/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/cminor/Makefile') diff --git a/test/cminor/Makefile b/test/cminor/Makefile index 29ebf699..9d2dfdb9 100644 --- a/test/cminor/Makefile +++ b/test/cminor/Makefile @@ -1,4 +1,5 @@ CCOMP=../../ccomp +FLAGS=-S CPP=cpp -P CC=gcc CFLAGS=-arch ppc -g @@ -69,6 +70,11 @@ marksweep: marksweep.o maingc.o marksweepcheck.o clean:: rm -f stopcopy +switchtbl: switchtbl.o mainswitchtbl.o + $(CC) $(CFLAGS) -o switchtbl switchtbl.o mainswitchtbl.o +clean:: + rm -f switchtbl + .SUFFIXES: .SUFFIXES: .cmp .cm .s .o .c .S -- cgit