aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-11-23 13:26:50 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:04:35 -0700
commitfe8df476cce241da882b6895b219e082ad3960f2 (patch)
treec1d2d6677ed26e25ad8dedfbcbbfa19d9b8d3d19 /Makefile
parent34038a899aa290c162229cab3289264961fd1772 (diff)
downloadsparse-dev-fe8df476cce241da882b6895b219e082ad3960f2.tar.gz
Add initial CSE pass
It ain't very smart yet, but give it time. In particular, right now it gathers information for the whole function, but it only does the actual replacement if the instructions are in the same basic block.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2057c4fb..f57f4954 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,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 compat-$(OS).o
+ sort.o flow.o cse.o compat-$(OS).o
LIB_FILE= sparse.a
LIBS=$(LIB_FILE)