aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-11-26 20:14:38 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:05:00 -0700
commit59a346978545f2bb361094a42c77b4b94ff7c78b (patch)
tree5d606225eeffae34996391aeaba45a0db853edb0 /Makefile
parenta4d8f9e57df44fdc031020d465d9d483b4666d92 (diff)
downloadsparse-dev-59a346978545f2bb361094a42c77b4b94ff7c78b.tar.gz
Add a final pseudo usage tracking phase, which keeps
track of which instructions use which pseudos. It also verifies the usage, which shows a few bugs in structure handling.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b8368ab3..71373bc2 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ LIB_H= token.h parse.h lib.h symbol.h scope.h expression.h target.h \
LIB_OBJS= target.o parse.o tokenize.o pre-process.o symbol.o lib.o scope.o \
expression.o show-parse.o evaluate.o expand.o inline.o linearize.o \
- sort.o flow.o cse.o simplify.o compat-$(OS).o
+ sort.o flow.o cse.o simplify.o register.o compat-$(OS).o
LIB_FILE= sparse.a
LIBS=$(LIB_FILE)
@@ -77,6 +77,7 @@ linearize.o: $(LIB_H)
flow.o: $(LIB_H)
cse.o: $(LIB_H)
simplify.o: $(LIB_H)
+register.o: $(LIB_H)
sort.o: $(LIB_H)
inline.o: $(LIB_H)
target.o: $(LIB_H)