From: Julian Seward Date: Fri, 29 Mar 2002 16:47:19 +0000 (+0000) Subject: Someone claimed that this gives reads below %esp when compiled with X-Git-Tag: svn/VALGRIND_1_0_3~403 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bec724cc8daa44b39e4273a3d2f2ca9a9e0c8e4a;p=thirdparty%2Fvalgrind.git 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 --- 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; +}; +