PR rtl-optimization/50290
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Nov 2011 15:23:18 +0000 (15:23 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Nov 2011 15:23:18 +0000 (15:23 +0000)
* gcc.dg/pr50290.c: New test.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr50290.c [new file with mode: 0644]

index 5674c28..bb8baba 100644 (file)
@@ -1,3 +1,8 @@
+2011-11-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/50290
+       * gcc.dg/pr50290.c: New test.
+
 2011-11-24  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/51290
diff --git a/gcc/testsuite/gcc.dg/pr50290.c b/gcc/testsuite/gcc.dg/pr50290.c
new file mode 100644 (file)
index 0000000..47680fd
--- /dev/null
@@ -0,0 +1,27 @@
+/* PR rtl-optimization/50290 */
+/* { dg-do run } */
+/* { dg-options "-O2 -fno-tree-loop-optimize -fno-tree-vrp -funroll-loops" } */
+
+static int
+bar (int t[], int b)
+{
+  int i;
+  for (i = 0; i < b; i++)
+    t[i] = i + (i > 0 ? t[i - 1] : 0);
+  return t[b - 1];
+}
+
+static int
+foo (int b)
+{
+  int x[b];
+  return bar (x, b);
+}
+
+int
+main ()
+{
+  if (foo (6) != 15)
+    __builtin_abort ();
+  return 0;
+}