aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>2000-03-03 02:29:35 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2000-03-03 02:29:35 +0000
commitc1b5b92ce85988906e0f0bde8100cc41ebc05fb0 (patch)
tree98be23c91f1e77ffd4302e9eef197f94473627af
parent834c6dff7ba7845c7fabeda67f711b5aa0f341d8 (diff)
downloadgcc-c1b5b92ce85988906e0f0bde8100cc41ebc05fb0.zip
gcc-c1b5b92ce85988906e0f0bde8100cc41ebc05fb0.tar.gz
gcc-c1b5b92ce85988906e0f0bde8100cc41ebc05fb0.tar.bz2
Remove unncessary printf calls
From-SVN: r32303
-rw-r--r--gcc/testsuite/g++.old-deja/g++.abi/arraynew.C3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C b/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
index 3e39e37..e62727f 100644
--- a/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
+++ b/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
@@ -5,8 +5,6 @@
#include <cstdlib>
#include <new>
-extern "C" int printf (const char*, ...);
-
void* p;
void* operator new[](size_t s) throw (bad_alloc)
@@ -57,7 +55,6 @@ void check_placement_cookie (int i)
p = malloc (sizeof (T) * 11 + 100);
void* a = new (p) T[11];
- printf ("%x %x\n", a, p);
// Compute the cookie location manually.
size_t x = __alignof__ (T);
if (x < sizeof (size_t))