OSDN Git Service

2004-06-22 Kelley Cook <kcook@gcc.gnu.org>
authorkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Jun 2004 21:17:16 +0000 (21:17 +0000)
committerkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Jun 2004 21:17:16 +0000 (21:17 +0000)
* g++.dg/opt/pr15551.C: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83515 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/opt/pr15551.C [new file with mode: 0644]

index 68598e4..ab024ec 100644 (file)
@@ -1,3 +1,7 @@
+2004-06-22 Kelley Cook <kcook@gcc.gnu.org>
+
+       * g++.dg/opt/pr15551.C: New testcase.
+
 2004-06-22  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR target/14800
diff --git a/gcc/testsuite/g++.dg/opt/pr15551.C b/gcc/testsuite/g++.dg/opt/pr15551.C
new file mode 100644 (file)
index 0000000..6fd6780
--- /dev/null
@@ -0,0 +1,22 @@
+// PR target/15551
+// This used to crash on pentium4-pc-cygwin due to an alloca problem.
+// Testcase submitted by Hans Horn to mingw bug tracker
+//
+// { dg-do run }
+// { dg-options "-O3" }
+
+#include <cstring>
+#include <fstream>
+using namespace std;
+
+ostream* logfile;
+
+int main () {
+
+  logfile = new ofstream("bar", ios::out);
+
+  char expList[20000];
+  strcpy(expList, "foo");
+
+  return 0;
+}