PR tree-optimization/53505
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 May 2012 14:28:00 +0000 (14:28 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 May 2012 14:28:00 +0000 (14:28 +0000)
* c-c++-common/torture/pr53505.c: New test.

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

gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/torture/pr53505.c [new file with mode: 0644]

index 4d6b6ff..5dca2c1 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-28  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/53505
+       * c-c++-common/torture/pr53505.c: New test.
+
 2012-05-27  Nathan Sidwell  <nathan@acm.org>
 
        * gcc.dg/stmt-expr-4.c: New.
diff --git a/gcc/testsuite/c-c++-common/torture/pr53505.c b/gcc/testsuite/c-c++-common/torture/pr53505.c
new file mode 100644 (file)
index 0000000..9227110
--- /dev/null
@@ -0,0 +1,42 @@
+/* PR tree-optimization/53505 */
+/* { dg-do run } */
+
+#include <stdbool.h>
+
+struct A
+{
+  unsigned int a;
+  unsigned char c1, c2;
+  bool b1 : 1;
+  bool b2 : 1;
+  bool b3 : 1;
+};
+
+void
+foo (const struct A *x, int y)
+{
+  int s = 0, i;
+  for (i = 0; i < y; ++i)
+    {
+      const struct A a = x[i];
+      s += a.b1 ? 1 : 0;
+    }
+  if (s != 0)
+    __builtin_abort ();
+}
+
+int
+main ()
+{
+  struct A x[100];
+  int i;
+  __builtin_memset (x, -1, sizeof (x));
+  for (i = 0; i < 100; i++)
+    {
+      x[i].b1 = false;
+      x[i].b2 = false;
+      x[i].b3 = false;
+    }
+  foo (x, 100);
+  return 0;
+}