diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-10-04 12:02:39 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-12-12 22:17:03 -0500 |
commit | 8fdea1dd5236f2693b677fc6bd6e2bb417c0fccd (patch) | |
tree | dd395aa367ebfe8c88dc2f5cbec719985c938195 /Makefile | |
parent | 12f9d16c7b000030ce332778fa4d51d455ae819f (diff) | |
download | roux-8fdea1dd5236f2693b677fc6bd6e2bb417c0fccd.tar.gz |
implement a simple alias analysis
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 64531ea..19bf777 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ ABI = sysv V = @ OBJDIR = obj -SRC = main.c util.c parse.c cfg.c mem.c ssa.c copy.c fold.c live.c $(ABI).c isel.c spill.c rega.c emit.c +SRC = main.c util.c parse.c cfg.c mem.c ssa.c alias.c copy.c fold.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 |