commit 23c55ceb9180877089b28797cef8e07b81c168ae parent 0a81036fa2dfeb44befad86f0bf3e48b2f4ffed9 Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu> Date: Thu, 31 Mar 2016 17:18:33 -0400 respect the order of the passes Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -4,7 +4,7 @@ ABI = sysv V = @ OBJDIR = obj -SRC = main.c util.c parse.c mem.c ssa.c copy.c live.c isel.c spill.c rega.c emit.c $(ABI).c +SRC = main.c util.c parse.c mem.c ssa.c copy.c live.c $(ABI).c isel.c spill.c rega.c emit.c OBJ = $(SRC:%.c=$(OBJDIR)/%.o) CFLAGS += -Wall -Wextra -std=c99 -g -pedantic