This is the mail archive of the gcc-bugs@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]

Re: Bootstrap failure: java/mangle_name.c, tm.h and insn-codes.h: Nosuch file or directory



Gerald Pfeifer writes:

> This is a new bootstrap failure (no more than 24 hours old) on
> sparc-sun-solaris2.8 with a parallel make: GNU make, -j=3, 2
> processors:

OK. I'm testing this patch, but it's taking longer than
expected. There here it is. Sorry about that.

./A

2001-02-09  Alexandre Petit-Bianco  <apbianco@redhat.com>

	* jvgenmain.c (error): Reversed 2001-02-01 deletion.

Index: jvgenmain.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/jvgenmain.c,v
retrieving revision 1.21
diff -u -p -r1.21 jvgenmain.c
--- jvgenmain.c	2001/02/09 00:32:11	1.21
+++ jvgenmain.c	2001/02/09 18:46:00
@@ -66,6 +66,24 @@ usage (const char *name)
   exit (1);
 }
 
+void
+error VPARAMS ((const char *msgid, ...))
+{
+#ifndef ANSI_PROTOTYPES
+  const char *msgid;
+#endif
+  va_list ap;
+  
+  VA_START (ap, msgid);
+  
+#ifndef ANSI_PROTOTYPES
+  msgid = va_arg (ap, const char *);
+#endif
+  
+  vfprintf (stderr, msgid, ap);
+  va_end (ap);
+}
+
 int
 main (int argc, const char **argv)
 {


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