Relative to g++.dg/special:

* conpr-1.C, conpr-2.C, conpr-3.C: Include stdlib.h.

	Relative to g++.old-deja:
	* g++.brendan/complex1.C, g++.jason/optimize2.C,
	g++.mike/p9732b.C, g++.other/addrof1.C, g++.other/dyncast5.C,
	g++.other/init5.C, g++.other/init7.C, g++.other/union2.C,
	g++.pt/vbase1.C, g++.robertl/eb14.C, g++.robertl/eh990323-1.C,
	g++.robertl/eh990323-2.C, g++.robertl/eh990323-3.C,
	g++.robertl/eh990323-4.C, g++.robertl/eh990323-5.C,
	g++.robertl/ice990323-2.C: Prototype exit and/or abort.

	* g++.brendan/nest21.C, g++.eh/rethrow3.C, g++.jason/init3.C,
	g++.law/arm15.C, g++.law/cvt2.C, g++.law/visibility17.C,
	g++.mike/eh23.C, g++.mike/eh25.C, g++.mike/eh34.C,
	g++.mike/eh48.C, g++.mike/eh55.C, g++.mike/p2736.C,
	g++.oliva/new1.C, g++.other/align.C, g++.robertl/eb39.C,
	g++.robertl/eb54.C, g++.robertl/eb63.C: Include stdlib.h
	and/or string.h.

	* g++.other/goto1.C: Update expectations for error messages.

From-SVN: r34226
This commit is contained in:
Zack Weinberg 2000-05-28 05:38:02 +00:00 committed by Zack Weinberg
parent e087aeb2b9
commit d2b51b106a
39 changed files with 89 additions and 10 deletions

View file

@ -1,3 +1,27 @@
2000-05-27 Zack Weinberg <zack@wolery.cumb.org>
Relative to g++.dg/special:
* conpr-1.C, conpr-2.C, conpr-3.C: Include stdlib.h.
Relative to g++.old-deja:
* g++.brendan/complex1.C, g++.jason/optimize2.C,
g++.mike/p9732b.C, g++.other/addrof1.C, g++.other/dyncast5.C,
g++.other/init5.C, g++.other/init7.C, g++.other/union2.C,
g++.pt/vbase1.C, g++.robertl/eb14.C, g++.robertl/eh990323-1.C,
g++.robertl/eh990323-2.C, g++.robertl/eh990323-3.C,
g++.robertl/eh990323-4.C, g++.robertl/eh990323-5.C,
g++.robertl/ice990323-2.C: Prototype exit and/or abort.
* g++.brendan/nest21.C, g++.eh/rethrow3.C, g++.jason/init3.C,
g++.law/arm15.C, g++.law/cvt2.C, g++.law/visibility17.C,
g++.mike/eh23.C, g++.mike/eh25.C, g++.mike/eh34.C,
g++.mike/eh48.C, g++.mike/eh55.C, g++.mike/p2736.C,
g++.oliva/new1.C, g++.other/align.C, g++.robertl/eb39.C,
g++.robertl/eb54.C, g++.robertl/eb63.C: Include stdlib.h
and/or string.h.
* g++.other/goto1.C: Update expectations for error messages.
2000-05-25 Alexandre Oliva <aoliva@cygnus.com>
* gcc.c-torture/compile/20000523-1.c: New test.

View file

@ -1,5 +1,7 @@
/* { dg-do run } */
#include <stdlib.h>
class foo_t {
int x;
public:

View file

@ -1,5 +1,7 @@
/* { dg-do run } */
#include <stdlib.h>
class foo_t {
int x;
static int count;

View file

@ -1,5 +1,7 @@
/* { dg-do run } */
#include <stdlib.h>
class foo_t {
int x;
static int count;

View file

@ -5,7 +5,10 @@
// a bug where the compiler was not converting the integer `90' to a
// complex number, unless you did `90.0'. Fixed 10/1/1997.
extern "C" int printf (const char *, ...);
extern "C" {
int printf (const char *, ...);
void exit (int);
};
__complex__ double cd;

View file

@ -1,6 +1,7 @@
// GROUPS passed nested-classes
#include <iostream.h>
#include <stdio.h>
#include <string.h>
static char output[1024];

View file

@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdlib.h>
#include <exception>
static void

View file

@ -1,8 +1,7 @@
// PRMS Id: 5652
// Bug: strings does not get initialized.
extern "C" void * memcpy (void *, const void *, __SIZE_TYPE__);
extern "C" int strcmp (const char *, const char *);
#include <string.h>
class My_string {
char *str;

View file

@ -1,6 +1,8 @@
// Used to crash on the alpha with optimization.
// Special g++ Options: -w
extern "C" void abort (void);
struct Fix {
unsigned short l;
};

View file

@ -6,6 +6,7 @@
// Message-ID: <9310211510.AA14943@holden.lulea.trab.se>
#include <stdio.h>
#include <stdlib.h>
int state = 0;

View file

@ -1,13 +1,10 @@
// GROUPS passed conversions
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iostream.h>
#include <fstream.h>
extern "C" {
int strncmp (const char *, const char *, size_t);
}
class cvec {
public:
~cvec(){ delete s; }

View file

@ -6,6 +6,7 @@
// Subject: Access to private constructor.
// Message-ID: <9308060023.AA10283@neptune.caere.com>
#include <iostream.h>
#include <string.h>
class Base
{

View file

@ -2,6 +2,7 @@
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
#include <exception>
#include <stdlib.h>
struct double_fault { };
int fault_now;

View file

@ -2,6 +2,7 @@
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
#include <exception>
#include <stdlib.h>
void my_terminate() {
exit (0); // Double faults should call terminate

View file

@ -2,6 +2,7 @@
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
#include <exception>
#include <stdlib.h>
void my_unexpected() {
exit (0);

View file

@ -2,6 +2,8 @@
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
#include <exception>
#include <stdlib.h>
using std::uncaught_exception;
class A {
public:

View file

@ -2,6 +2,7 @@
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
#include <exception>
#include <stdlib.h>
void my_terminate_handler() {
exit(0);

View file

@ -2,6 +2,8 @@
// statics are destroyed at the right time. See PR 2736 for details.
// prms-id: 2736
#include <stdlib.h>
int count;
struct A {

View file

@ -3,8 +3,10 @@
int count;
int bail = 0;
extern "C" void abort (void);
extern "C" void _exit (int);
struct base {
base () { ++count; }
~base () { --count; }

View file

@ -7,6 +7,7 @@
// execution test
#include <new>
#include <stdlib.h>
struct A {
A() { throw 0; }

View file

@ -1,3 +1,6 @@
extern "C" void abort ();
typedef struct st {
unsigned char a;
unsigned char b;

View file

@ -1,4 +1,5 @@
// Build don't link:
#include <string.h>
class bar {
public:

View file

@ -3,6 +3,8 @@
// dynamic cast can only cast to public unambiguous bases
extern "C" void abort ();
struct A {virtual ~A(){} int m; };
struct B {virtual ~B(){} int m; };

View file

@ -10,12 +10,12 @@ struct S
void f ()
{
{
S s1;
S s1; // ERROR - skips initialization
t:
t: // ERROR - jump to label
S s2;
;
}
goto t; // ERROR - jump avoids initialization of `s1'
goto t; // ERROR - from here
}

View file

@ -2,6 +2,8 @@
// Original test attributed to James Kanze <jkanze@otelo.ibmmail.com>
// execution test - XFAIL *-*-*
extern "C" void abort ();
static int cnt;
class A {

View file

@ -4,6 +4,8 @@
// The initialization of a static local variable must be retried if a
// previous try finished by throwing an exception [stmt.dcl]/4
extern "C" void abort ();
struct foo {
foo() { throw true; }
};

View file

@ -2,6 +2,8 @@
// Bug: gcc and g++ didn't zero unions with empty initializers.
// Submitted by J"orn Rennecke <amylaar@cygnus.co.uk>
extern "C" void exit (int);
typedef union u
{
union u *up;

View file

@ -1,6 +1,8 @@
// Check that template classes handle inherited virtual bases
// properly, initializing them before direct non-virtual bases.
extern "C" void exit (int);
int aflag;
struct A

View file

@ -1,3 +1,6 @@
extern "C" void abort ();
template<int N>
struct I {
};

View file

@ -4,6 +4,7 @@
// #include <streambuf.h>
#include <libio.h>
#include <strstream.h>
#include <string.h>
extern bool foo2 (ostream &out, istream &in);

View file

@ -5,6 +5,7 @@
// friend function, the non-template function does
#include <stdio.h>
#include <stdlib.h>
#include <iostream.h>
template <class T>

View file

@ -1,4 +1,5 @@
#include <iomanip.h>
#include <stdlib.h>
int main()
{

View file

@ -1,6 +1,7 @@
//Special g++ Options:
//This uses GNU extensions, so disable -ansi
#include <stdio.h>
#include <stdlib.h>
class A {
public:

View file

@ -1,4 +1,6 @@
// check cleanup of template temporaries
extern "C" void abort ();
extern "C" void exit (int);
int ctor = 0;
int dtor = 0;

View file

@ -1,4 +1,6 @@
// check MI and VBC offsets on throw
extern "C" void abort ();
extern "C" void exit (int);
struct A {
int x[23];

View file

@ -1,4 +1,6 @@
// try throwing 0 cast to a class object
extern "C" void abort ();
extern "C" void exit (int);
struct A {};

View file

@ -1,4 +1,6 @@
// check MI and VBC offsets on throw
extern "C" void abort ();
extern "C" void exit (int);
struct A {
int x[23];

View file

@ -1,4 +1,6 @@
// check cleanup of partial array objects
extern "C" void abort (void);
extern "C" void exit (int);
int ctor = 0;
int dtor = 0;

View file

@ -1,4 +1,6 @@
// check EH with templates
extern "C" void abort ();
extern "C" void exit (int);
template <class T, int n, class U> struct A {
A() {}