qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 8d1f2f9d2c720e8eb8d0b5ef4e2f81f7316f765b
parent a70119010fa7b4cba9facb7f90930de4dc3dc80a
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Fri, 29 Jan 2016 10:07:19 -0500

compile rega

Diffstat:
Mlisc/Makefile | 2+-
Mlisc/main.c | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisc/Makefile b/lisc/Makefile @@ -1,6 +1,6 @@ BIN = lisc # OBJ = main.o util.o parse.o mem.o ssa.o copy.o live.o isel.o spill.o rega.o emit.o -OBJ = main.o util.o parse.o ssa.o live.o isel.o spill.o +OBJ = main.o util.o parse.o ssa.o live.o isel.o spill.o rega.o CFLAGS = -Wall -Wextra -std=c99 -g -pedantic diff --git a/lisc/main.c b/lisc/main.c @@ -60,6 +60,7 @@ func(Fn *fn) filllive(fn); fillcost(fn); spill(fn); + rega(fn); #if 0 memopt(fn); ssa(fn);