From bec724cc8daa44b39e4273a3d2f2ca9a9e0c8e4a Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Fri, 29 Mar 2002 16:47:19 +0000 Subject: [PATCH] Someone claimed that this gives reads below %esp when compiled with g++ 3.0.4; I can't repro it. But am collecting anyway. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@43 --- tests/gxx304.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/gxx304.cpp diff --git a/tests/gxx304.cpp b/tests/gxx304.cpp new file mode 100644 index 0000000000..78ee7a1f87 --- /dev/null +++ b/tests/gxx304.cpp @@ -0,0 +1,7 @@ + +#include +int main(void) { + std::ofstream pippo("pluto"); + return 0; +}; + -- 2.47.3