OSDN Git Service

* toplev.c (notice, fnotice): Check ANSI_PROTOTYPES, not __STDC__,
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jan 1999 12:10:52 +0000 (12:10 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jan 1999 12:10:52 +0000 (12:10 +0000)
        when declaring arguments and calling va_arg() to initialize them.
        * collect2.c (notice): Likewise.
        * loop.c (find_life_end): Use PROTO() macro in the prototype.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24905 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/collect2.c
gcc/loop.c
gcc/toplev.c

index cbeb160..3e9552c 100644 (file)
@@ -1,3 +1,12 @@
+Fri Jan 29 15:00:39 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * toplev.c (notice, fnotice): Check ANSI_PROTOTYPES, not __STDC__,
+       when declaring arguments and calling va_arg() to initialize them.
+
+       * collect2.c (notice): Likewise.
+
+       * loop.c (find_life_end): Use PROTO() macro in the prototype.
+
 Fri Jan 29 14:36:11 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * collect2.c (error): Fix typo in declaration.
index 6ec9f31..f273bb8 100644 (file)
@@ -406,14 +406,14 @@ collect_exit (status)
 void
 notice VPROTO((char *msgid, ...))
 {
-#ifndef __STDC__
+#ifndef ANSI_PROTOTYPES
   char *msgid;
 #endif
   va_list ap;
 
   VA_START (ap, msgid);
 
-#ifndef __STDC__
+#ifndef ANSI_PROTOTYPES
   msgid = va_arg (ap, char *);
 #endif
 
index 23d1323..11728f0 100644 (file)
@@ -324,7 +324,7 @@ static rtx express_from PROTO((struct induction *, struct induction *));
 static rtx combine_givs_p PROTO((struct induction *, struct induction *));
 static void combine_givs PROTO((struct iv_class *));
 struct recombine_givs_stats;
-static int find_life_end (rtx,  struct recombine_givs_stats *, rtx, rtx);
+static int find_life_end PROTO((rtx, struct recombine_givs_stats *, rtx, rtx));
 static void recombine_givs PROTO((struct iv_class *, rtx, rtx, int));
 static int product_cheap_p PROTO((rtx, rtx));
 static int maybe_eliminate_biv PROTO((struct iv_class *, rtx, rtx, int, int, int));
index 4ecc9c9..46f0c6a 100644 (file)
@@ -1541,14 +1541,14 @@ vnotice (file, msgid, ap)
 void
 notice VPROTO((const char *msgid, ...))
 {
-#ifndef __STDC__
+#ifndef ANSI_PROTOTYPES
   char *msgid;
 #endif
   va_list ap;
 
   VA_START (ap, msgid);
 
-#ifndef __STDC__
+#ifndef ANSI_PROTOTYPES
   msgid = va_arg (ap, char *);
 #endif
 
@@ -1559,7 +1559,7 @@ notice VPROTO((const char *msgid, ...))
 void
 fnotice VPROTO((FILE *file, char *msgid, ...))
 {
-#ifndef __STDC__
+#ifndef ANSI_PROTOTYPES
   FILE *file;
   char *msgid;
 #endif
@@ -1567,7 +1567,7 @@ fnotice VPROTO((FILE *file, char *msgid, ...))
 
   VA_START (ap, msgid);
 
-#ifndef __STDC__
+#ifndef ANSI_PROTOTYPES
   file = va_arg (ap, FILE *);
   msgid = va_arg (ap, char *);
 #endif