diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-03 14:06:59 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:30 -0400 |
commit | df358ad6d21502568df9f937788f3fab6a81e047 (patch) | |
tree | d0d31f84e31c50a278bf7e876e2726cf8cba7acb /lisc/Makefile | |
parent | d586852552c23fd1dbf9437f43ffb34a154571c8 (diff) | |
download | roux-df358ad6d21502568df9f937788f3fab6a81e047.tar.gz |
use correct sizes during reg allocation
Diffstat (limited to 'lisc/Makefile')
-rw-r--r-- | lisc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/Makefile b/lisc/Makefile index afaa538..444485c 100644 --- a/lisc/Makefile +++ b/lisc/Makefile @@ -1,5 +1,5 @@ BIN = lisc -OBJ = parse.o ssa.o live.o isel.o spill.o rega.o main.o # emit.o main.o +OBJ = parse.o ssa.o live.o isel.o spill.o rega.o emit.o main.o CFLAGS = -Wall -Wextra -std=c11 -g -pedantic |