aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/pretty.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.ext/pretty.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.ext/pretty.C42
1 files changed, 0 insertions, 42 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.ext/pretty.C b/gcc/testsuite/g++.old-deja/g++.ext/pretty.C
deleted file mode 100644
index 715837de0be..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.ext/pretty.C
+++ /dev/null
@@ -1,42 +0,0 @@
-// Test for PRETTY_FUNCTION
-// Build don't link:
-
-class SV;
-
-class SVTable // : public Debug
-{
- // It is an array to pointer to a SV.
- SV ** array;
-
- // This is the size of array.
- int maxCount;
-
- // This is the current element count.
- int count;
-
- void fatal_error (const char *f, ...);
-
-public:
- SVTable (int size, const char *d);
- SVTable ();
- SVTable (const SVTable &);
- ~SVTable () {}
-
-};
-
-
-SVTable::SVTable (int size, const char *d)
- : maxCount (size), count (0)// , Debug (d)
-{
- if (size < 0)
- {
- fatal_error ("%s: Invalid size: %d\n", __PRETTY_FUNCTION__, size);
- }
-
- array = (SV **) new SV * [size];
-
- if (array == 0)
- {
- fatal_error ("%s: Failed to allocate array\n", __PRETTY_FUNCTION__);
- }
-}