This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] fix for PR8344 on all branches and HEAD


The patch needed some adaptation for 3.3, it is now commited,
bootstraped c,ada and ran ACATS on i386-linux-gnu.

FYI, here are the ACATS 3.3 raw failure results against 3.2:

=== common 14
cz00004 ce2120a ce2120b ce3119a cxc3003
cxc3004 cxc3006 cxc3009 cxd2002 cxd2003
cxd2004 cxd2006 cxd2008 cxda004
=== fixed 22
c36172a c392013 c392014 c43215b cdd1001
cxa4016 cxa4021 cxa4022 cxa4023 cxa4033
cxa5a01 cxa5a02 cxa5a03 cxa5a04 cxa5a08
cxaa019 cxac005 cxg2004 cxg2008 cxg2013
cxg2018 cxg2021
=== new 21
c340001 c34007p c37215f c390001 c390005
c390006 c390a01 c390a02 c390a03 c85004b
c954012 c96005a c96005d c96005f c96006a
c96007a c96008a c96008b c974002 cc51007
cxd9001

Now HEAD...

--
Laurent Guerby <guerby@acm.org>

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ada/ChangeLog,v
retrieving revision 1.270.2.5
diff -u -r1.270.2.5 ChangeLog
--- ChangeLog 29 Jan 2003 17:40:47 -0000 1.270.2.5
+++ ChangeLog 29 Jan 2003 22:35:26 -0000
@@ -1,3 +1,10 @@
+2003-01-29 Laurent Guerby <guerby@acm.org>
+
+ PR ada/8344
+ * final.c: rename to adafinal.c to avoid file name conflicts with gcc file.
+ * Makefile.in: match previous change.
+ * Make-lang.in: match previous change.
+
2003-01-29 Joel Sherrill <joel@OARcorp.com>

* 5rosinte.ads: Add SIGXCPU.
Index: Make-lang.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ada/Make-lang.in,v
retrieving revision 1.18.4.3
diff -u -r1.18.4.3 Make-lang.in
--- Make-lang.in 28 Jan 2003 21:59:32 -0000 1.18.4.3
+++ Make-lang.in 29 Jan 2003 22:35:34 -0000
@@ -170,7 +170,7 @@
ada/s-stoele.o ada/s-imgenu.o ada/s-strops.o ada/s-soflin.o ada/s-wchcon.o \
ada/s-wchjis.o ada/sdefault.o ada/switch.o ada/switch-b.o ada/stylesw.o \
ada/validsw.o ada/system.o ada/table.o ada/tree_io.o ada/types.o \
- ada/widechar.o ada/raise.o ada/exit.o ada/argv.o ada/init.o ada/final.o \
+ ada/widechar.o ada/raise.o ada/exit.o ada/argv.o ada/init.o ada/adafinal.o \
ada/s-wchcnv.o ada/s-exctab.o ada/a-except.o ada/s-memory.o ada/s-traceb.o \
ada/tracebak.o ada/s-mastop.o ada/s-except.o ada/s-secsta.o ada/atree.o \
ada/scans.o ada/einfo.o ada/sinfo.o ada/scn.o ada/sinput.o ada/sinput-l.o \
@@ -969,7 +969,7 @@
ada/argv.o : ada/argv.c $(CONFIG_H) $(SYSTEM_H) ada/adaint.h
ada/cstreams.o : ada/cstreams.c $(CONFIG_H) $(SYSTEM_H) ada/adaint.h
ada/exit.o : ada/exit.c $(CONFIG_H) $(SYSTEM_H) ada/adaint.h
-ada/final.o : ada/final.c $(CONFIG_H) $(SYSTEM_H) ada/raise.h
+ada/adafinal.o : ada/adafinal.c $(CONFIG_H) $(SYSTEM_H) ada/raise.h
ada/link.o : ada/link.c

ada/cio.o : ada/cio.c $(CONFIG_H) $(SYSTEM_H) ada/adaint.h
Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ada/Makefile.in,v
retrieving revision 1.36.4.2
diff -u -r1.36.4.2 Makefile.in
--- Makefile.in 29 Jan 2003 17:40:47 -0000 1.36.4.2
+++ Makefile.in 29 Jan 2003 22:35:37 -0000
@@ -1021,10 +1021,10 @@
LIBGNAT_SRCS = ada.h adaint.c adaint.h argv.c cio.c cstreams.c \
errno.c exit.c cal.c \
raise.h raise.c sysdep.c types.h aux-io.c init.c \
- final.c tracebak.c expect.c mkdir.c $(EXTRA_LIBGNAT_SRCS)
+ adafinal.c tracebak.c expect.c mkdir.c $(EXTRA_LIBGNAT_SRCS)

LIBGNAT_OBJS = adaint.o argv.o cio.o cstreams.o errno.o exit.o \
- raise.o sysdep.o aux-io.o init.o cal.o final.o \
+ raise.o sysdep.o aux-io.o init.o cal.o adafinal.o \
tracebak.o expect.o mkdir.o $(EXTRA_LIBGNAT_OBJS)

# NOTE ??? - when the -I option for compiling Ada code is made to work,
@@ -2088,7 +2088,7 @@
errno.o : errno.c
exit.o : raise.h exit.c
expect.o : expect.c
-final.o : raise.h final.c
+adafinal.o : raise.h adafinal.c
gmem.o : gmem.c
link.o : link.c
mkdir.o : mkdir.c
@@ -2131,7 +2131,7 @@

# Gnatlbr is only used on VMS

-GNATLBR_RTL_C_OBJS = adaint.o argv.o cio.o cstreams.o exit.o final.o init.o \
+GNATLBR_RTL_C_OBJS = adaint.o argv.o cio.o cstreams.o exit.o adafinal.o init.o \
raise.o sysdep.o tracebak.o
GNATLBR_C_OBJS = $(GNATLBR_RTL_C_OBJS)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]