implicit1.C: Remove.
authorNathan Sidwell <nathan@codesourcery.com>
Tue, 25 Jul 2000 20:11:44 +0000 (20:11 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Tue, 25 Jul 2000 20:11:44 +0000 (20:11 +0000)
* g++.old-deja/g++.ext/implicit1.C: Remove.
* g++.old-deja/g++.jason/c2.C: Remove
* g++.old-deja/g++.mike/p700.C: Add prototype parameters.
* g++.old-deja/g++.pt/crash16.C: Likewise.
* g++.old-deja/g++.brendan/crash43.C: Remove -fstrict-prototype.

From-SVN: r35252

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.brendan/crash43.C
gcc/testsuite/g++.old-deja/g++.ext/implicit1.C [deleted file]
gcc/testsuite/g++.old-deja/g++.jason/c2.C [deleted file]
gcc/testsuite/g++.old-deja/g++.mike/p700.C
gcc/testsuite/g++.old-deja/g++.pt/crash16.C

index 0d14ba586c80914cd107225718bcff30a516902c..49fd868618e206dd1007d6e791fb6041d36be211 100644 (file)
@@ -1,3 +1,11 @@
+2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.old-deja/g++.ext/implicit1.C: Remove.
+       * g++.old-deja/g++.jason/c2.C: Remove
+       * g++.old-deja/g++.mike/p700.C: Add prototype parameters.
+       * g++.old-deja/g++.pt/crash16.C: Likewise.
+       * g++.old-deja/g++.brendan/crash43.C: Remove -fstrict-prototype.
+
 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
 
        * g++.old-deja/g++.other/for2.C: New test.
index 5fe54231c89c6127a7ef4eea99f0b2303d8d3e88..d38e1cb56378acea2947e11c2d2cf03bf5823cc9 100644 (file)
@@ -1,5 +1,5 @@
 // Build don't link: 
-// Special g++ Options: -g -fno-strict-prototype
+// Special g++ Options: -g
 // GROUPS passed old-abort
 // excess errors test - XFAIL sparc64-*-elf
 extern "C" { typedef int jmp_buf[12]; }
diff --git a/gcc/testsuite/g++.old-deja/g++.ext/implicit1.C b/gcc/testsuite/g++.old-deja/g++.ext/implicit1.C
deleted file mode 100644 (file)
index 33b9450..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// test for implicit declaration
-// Special g++ Options: -w -fpermissive
-
-int
-main ()
-{
-  return blarg ();
-}
-
-extern "C" int
-blarg (...)
-{
-  return 0;
-}
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/c2.C b/gcc/testsuite/g++.old-deja/g++.jason/c2.C
deleted file mode 100644 (file)
index ba7f0ed..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// PRMS Id: 3134
-// g++ understands C redeclaration semantics.  Sun CC 2.0.1 doesn't.
-// Special g++ Options:
-// Build don't link:
-
-extern "C" {
-  int foo();
-  int foo(int);
-
-  int bar(int);
-  int bar();
-}
-
-main()
-{
-  foo (1);
-  bar (1);
-}
index 7c4cbc8306460d0420115edce261f83b2eceb9c9..345831a5abe51a655d9cecbf678e0c1d937235ff 100644 (file)
@@ -1514,9 +1514,9 @@ extern struct _iobuf      *c_proto_fdopen ();
 extern struct _iobuf   *c_proto_freopen ();
 extern struct _iobuf   *c_proto_popen ();
 extern struct _iobuf   *tmpfile();
-extern long    ftell();
-extern char    *fgets();
-extern char    *gets();
+extern long    ftell(_iobuf *);
+extern char    *fgets(char *, int, _iobuf *);
+extern char    *gets(char *);
 extern char    *c_proto_sprintf ();
 extern char    *ctermid();
 extern char    *cuserid();
@@ -1820,7 +1820,7 @@ struct    tm {
 extern struct tm *c_proto_gmtime (), *c_proto_localtime ();
 extern char *c_proto_asctime (), *c_proto_ctime ();
 extern void c_proto_tzset (), c_proto_tzsetwall ();
-extern  int dysize();
+extern  int dysize(int);
 extern  time_t timelocal(), timegm();
 
 
@@ -1945,7 +1945,7 @@ struct tms {
 };
 
 
-clock_t times( );
+clock_t times(tms * );
 
 
 
index ed12b909ca24c8e893482ecc359b1a0b9de5f677..45511bb850441e5eb5bb52d760369335ac88b179 100644 (file)
@@ -1,7 +1,8 @@
 // Build don't link:
 // Special g++ Options:
 
-extern "C" void qsort();
+extern "C" void qsort(void *base, __SIZE_TYPE__ nmemb, __SIZE_TYPE__ size,
+              int (*compar)(const void *, const void *));
 
 struct R {
   int count;