diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-03 13:17:44 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:29 -0400 |
commit | 9456200d91840b09cb876146c271c5cbe503d767 (patch) | |
tree | 89d1500294b163f05498549babff5a4be60adfc8 /lisc/Makefile | |
parent | 93601b6d0234875cf97e57b7e56fdd5a1803eac0 (diff) | |
download | roux-9456200d91840b09cb876146c271c5cbe503d767.tar.gz |
use a new Ref type for registers
This might not be a good idea, the problem was that many spurious registers would be added to the Bits data-structures during compilation (and would always remain 0). However, doing the above modification de-uniformizes the handling of temps and regs, this makes the code longer and not really nicer. Also, additional Bits structures are required to track the registers independently. Overall this might be a bad idea to revert.
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 26369f2..afaa538 100644 --- a/lisc/Makefile +++ b/lisc/Makefile @@ -1,5 +1,5 @@ BIN = lisc -OBJ = main.o parse.o ssa.o live.o # isel.o spill.o rega.o emit.o +OBJ = parse.o ssa.o live.o isel.o spill.o rega.o main.o # emit.o main.o CFLAGS = -Wall -Wextra -std=c11 -g -pedantic |