diff options
author | Frank Ch. Eigler <fche@redhat.com> | 2004-06-29 22:30:53 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@gcc.gnu.org> | 2004-06-29 22:30:53 +0000 |
commit | dfdf6a9440609d8a58c6625b31d34509dd2df838 (patch) | |
tree | 5ea0f59fb7a56b8a63681ee82cdcb3dc5e366b6d /libmudflap/Makefile.in | |
parent | ef558756f2838de518a99a52caabe931e9af52b1 (diff) | |
download | gcc-dfdf6a9440609d8a58c6625b31d34509dd2df838.tar.gz |
[multiple changes]
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>
From-SVN: r83879
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 $@ |