]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Someone claimed that this gives reads below %esp when compiled with
authorJulian Seward <jseward@acm.org>
Fri, 29 Mar 2002 16:47:19 +0000 (16:47 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 29 Mar 2002 16:47:19 +0000 (16:47 +0000)
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 [new file with mode: 0644]

diff --git a/tests/gxx304.cpp b/tests/gxx304.cpp
new file mode 100644 (file)
index 0000000..78ee7a1
--- /dev/null
@@ -0,0 +1,7 @@
+
+#include <fstream>
+int main(void) {
+        std::ofstream pippo("pluto");
+        return 0;
+};
+