]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/delete8.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / delete8.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/delete8.C b/gcc/testsuite/g++.old-deja/g++.other/delete8.C
deleted file mode 100644 (file)
index 1f884b7..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-// Origin: Mark Mitchell <mark@codesourcery.com>
-
-#include <stdlib.h>
-
-struct S {
-  ~S ();
-};
-
-bool flag;
-S* s1;
-S* s2;
-
-void* operator new (size_t s)
-{
-  return malloc (s);
-}
-
-void operator delete (void* p)
-{
-  if (flag && p != s2)
-    abort ();
-}
-
-S::~S () { 
-  if (this != s2)
-    abort ();
-  s1 = 0;
-}
-
-int main () {
-  s2 = new S;
-  s1 = s2;
-  // Turn on the check in `operator delete'.
-  flag = true;
-  delete s1;
-  // Turn it off again so that normal shutdown code works.
-  flag = false;
-}
-