OSDN Git Service

eb47.C eb53.C eb89.C, quoting Martin:
authorrobertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Jun 1998 19:44:07 +0000 (19:44 +0000)
committerrobertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Jun 1998 19:44:07 +0000 (19:44 +0000)
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]

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

gcc/testsuite/g++.old-deja/g++.robertl/eb47.C [deleted file]
gcc/testsuite/g++.old-deja/g++.robertl/eb53.C [deleted file]
gcc/testsuite/g++.old-deja/g++.robertl/eb89.C [deleted file]

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 (file)
index d615d1c..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- *  Test program to isolate internal compiler error.
- */
-
-#include <stdlib.h>
-#include <string.h>
-#include <assert.h>
-#include <iostream.h>
-#include <fstream.h>
-#include <ctype.h>
-
-#include <vector.h>
-
-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<MESSAGE &> Messages;
-  vector<MESSAGE &>::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 (file)
index 328fee9..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <list>
-
-main()
-{
-        list<int&> 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 (file)
index 71995bf..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <vector>
-
-int
-main()
-{
-    int i;
-    vector<int&> v;
-    v.push_back(i);
-    return 0;
-}