OSDN Git Service

PR tree-optimization/32575
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Nov 2007 13:07:54 +0000 (13:07 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Nov 2007 13:07:54 +0000 (13:07 +0000)
* gcc.c-torture/execute/20071108-1.c: New test.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20071108-1.c [new file with mode: 0644]

index fdbbb6b..676fb88 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-08  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/32575
+       * gcc.c-torture/execute/20071108-1.c: New test.
+
 2007-11-08  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * g++.dg/opt/anchor1.C: New.
diff --git a/gcc/testsuite/gcc.c-torture/execute/20071108-1.c b/gcc/testsuite/gcc.c-torture/execute/20071108-1.c
new file mode 100644 (file)
index 0000000..f546057
--- /dev/null
@@ -0,0 +1,53 @@
+/* PR tree-optimization/32575 */
+
+extern void abort (void);
+
+struct S
+{
+  void *s1, *s2;
+  unsigned char s3, s4, s5;
+};
+
+__attribute__ ((noinline))
+void *
+foo (void)
+{
+  static struct S s;
+  return &s;
+}
+
+__attribute__ ((noinline))
+void *
+bar ()
+{
+  return (void *) 0;
+}
+
+__attribute__ ((noinline))
+struct S *
+test (void *a, void *b)
+{
+  struct S *p, q;
+  p = foo ();
+  if (p == 0)
+    {
+      p = &q;
+      __builtin_memset (p, 0, sizeof (*p));
+    }
+  p->s1 = a;
+  p->s2 = b;
+  if (p == &q)
+    p = 0;
+  return p;
+}
+
+int
+main (void)
+{
+  int a;
+  int b;
+  struct S *z = test ((void *) &a, (void *) &b);
+  if (z == 0 || z->s1 != (void *) &a || z->s2 != (void *) &b || z->s3 || z->s4)
+    abort ();
+  return 0;
+}