* Makefile.in (libgcc1.null): Make return type for __foo void.

From-SVN: r18883
This commit is contained in:
Jeffrey A Law 1998-03-28 23:43:54 +00:00 committed by Jeff Law
parent b4c4a9ecbe
commit f1b03ce152
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Mar 29 00:42:21 1998 Jeffrey A Law (law@cygnus.com)
* Makefile.in (libgcc1.null): Make return type for __foo void.
Sat Mar 28 14:37:20 1998 Jeffrey A Law (law@cygnus.com)
* pa.h: Add declarations for many functions defined in pa.c.

View File

@ -868,7 +868,7 @@ libgcc1.conv: libgcc1.a
# Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
# Make an empty file instead.
libgcc1.null: $(GCC_PASSES)
echo "__foo () {}" > dummy.c
echo "void __foo () {}" > dummy.c
$(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
$(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy$(objext)
rm -f dummy$(objext) dummy.c