summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-09-04 20:22:38 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-12-12 22:17:03 -0500
commit3f147ed2e078769a71b2935fc36cb08b2b0ddb67 (patch)
tree3bf4bed9df2904c41d786426ab4cfc8cc7767a87 /Makefile
parent8fdea1dd5236f2693b677fc6bd6e2bb417c0fccd (diff)
downloadroux-3f147ed2e078769a71b2935fc36cb08b2b0ddb67.tar.gz
implement a simple load elimination pass
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 19bf777..fc649f8 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 alias.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 load.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