From: Robert Lipe Date: Tue, 2 Jun 1998 19:44:07 +0000 (+0000) Subject: eb47.C eb53.C eb89.C, quoting Martin: X-Git-Tag: prereleases/egcs-1.1-prerelease~973 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=631253eb70f8363f4d80a0d39c305649abc2a263;p=thirdparty%2Fgcc.git eb47.C eb53.C eb89.C, quoting Martin: These three test cases all build standard templates from reference types, which is illegal. Unfortunately, they all give errors for lines in library headers, which I can't test for. Therefore, I suggest to remove all of them, and replace it with [eb128.c] From-SVN: r20184 --- diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb47.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb47.C deleted file mode 100644 index d615d1c76a5d..000000000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb47.C +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Test program to isolate internal compiler error. - */ - -#include -#include -#include -#include -#include -#include - -#include - -class MESSAGE { -public: - int MessNum; - int Size; - - // constructors - MESSAGE(int MN, int Sz); - - MESSAGE(); - -}; - -// Make a message if message rule is triggered by event. -// Returns either a MESSAGE * (if successful) or NULL (if not). -MESSAGE *MakMessage(int ev, int sz); - -int main(int argc, char **argv) { - vector Messages; - vector::iterator itMess; - - int MN, SZ; - - MN=SZ=1; - - MESSAGE *Messg=MakMessage(MN,SZ); - if (Messg) Messages.push_back(*Messg); -} - - diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb53.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb53.C deleted file mode 100644 index 328fee9387a6..000000000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb53.C +++ /dev/null @@ -1,7 +0,0 @@ -#include - -main() -{ - list kill_the_compiler_now(1); -} - diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb89.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb89.C deleted file mode 100644 index 71995bf1ac3b..000000000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb89.C +++ /dev/null @@ -1,10 +0,0 @@ -#include - -int -main() -{ - int i; - vector v; - v.push_back(i); - return 0; -}