diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-02-25 14:48:15 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-02-25 15:14:12 -0500 |
commit | 2c2db15995ce6c0f362d65e174d5a1b933057b80 (patch) | |
tree | c6faa1a0bbe472420be1372c9762f11be4403d8f /Makefile | |
parent | e46b4e31e83f2f9d638ddffc5575795565f15e88 (diff) | |
download | roux-2c2db15995ce6c0f362d65e174d5a1b933057b80.tar.gz |
do sign/zero extensions removal in copy.c
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 4040923..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 load.c simpl.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 |