diff options
author | fche <fche@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-29 22:30:53 +0000 |
---|---|---|
committer | fche <fche@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-29 22:30:53 +0000 |
commit | 9d6f56533d2775a66d64d2fa4daebfe53e2fe2b7 (patch) | |
tree | 5ea0f59fb7a56b8a63681ee82cdcb3dc5e366b6d /libmudflap/Makefile.in | |
parent | 2ff27890aa2a8ba7fe930013514db65706a1c27c (diff) | |
download | gcc-9d6f56533d2775a66d64d2fa4daebfe53e2fe2b7.tar.gz |
2004-06-29 Frank Ch. Eigler <fche@redhat.com>
Splay tree implementation fork.
* splay-tree.c, splay-tree.h: Copied & modified from libiberty.
Use hard-coded comparison function for uintptr_t. Remove key/value
deallocation logic. Cache last splayed key for consecutive lookups.
* Makefile.am, Makefile.in: Use them, don't link to them.
* mf-runtime.c (__mf_object_tree): Adapt to simpler splay_tree_new.
(__mf_find_objects2): Flip successor/predecessor search sequence.
* ansidecl.h, libiberty.h: Removed dummy files.
2004-06-29 Nick Clifton <nickc@redhat.com>
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83879 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libmudflap/Makefile.in')
-rw-r--r-- | libmudflap/Makefile.in | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libmudflap/Makefile.in b/libmudflap/Makefile.in index 787007ac66b..75547e50f9a 100644 --- a/libmudflap/Makefile.in +++ b/libmudflap/Makefile.in @@ -817,20 +817,10 @@ uninstall-info: uninstall-info-recursive uninstall uninstall-am uninstall-includeHEADERS \ uninstall-info-am uninstall-toolexeclibLTLIBRARIES - -# Copy this out of libiberty's source tree, so it can be built here via libtool -splay-tree.c: - rm -f $@ - $(LN_S) $(srcdir)/../libiberty/splay-tree.c $@ -# Copy this so that top-level include/ does not have to be put into -I path -splay-tree.h: - rm -f $@ - $(LN_S) $(srcdir)/../include/splay-tree.h $@ mf-runtime.lo: mf-runtime.c splay-tree.c splay-tree.h clean-local: rm -f pth/*.o pth/*.lo - rm -f splay-tree.c splay-tree.h pth/mf-runtime.lo: mf-runtime.c mf-runtime.h mf-impl.h splay-tree.c splay-tree.h $(LTCOMPILE) -DLIBMUDFLAPTH -c $(srcdir)/mf-runtime.c -o $@ |