]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
20060905-1.c: New test.
authorEric Botcazou <ebotcazou@libertysurf.fr>
Tue, 5 Sep 2006 07:05:08 +0000 (09:05 +0200)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Tue, 5 Sep 2006 07:05:08 +0000 (07:05 +0000)
* gcc.c-torture/execute/20060905-1.c: New test.

From-SVN: r116692

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

index 0355796a543bb50bcbc5738efc8cfb1ea5040918..a2b7e9cd9c8b67ec06c7f54a1f7c8a7143fb695b 100644 (file)
@@ -1,3 +1,7 @@
+2006-09-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * gcc.c-torture/execute/20060905-1.c: New test.
+
 2006-09-05 Paul Thomas <pault@gcc.gnu.org>
 
        PR fortran/28908
diff --git a/gcc/testsuite/gcc.c-torture/execute/20060905-1.c b/gcc/testsuite/gcc.c-torture/execute/20060905-1.c
new file mode 100644 (file)
index 0000000..eac884f
--- /dev/null
@@ -0,0 +1,35 @@
+/* PR rtl-optimization/28386 */
+/* Origin: Volker Reichelt <reichelt@gcc.gnu.org> */
+
+extern void abort(void);
+
+volatile char s[256][3];
+
+char g;
+
+static void dummy(char a)
+{
+  g = a;
+}
+
+static int foo(void)
+{
+  int i, j=0;
+
+  for (i = 0; i < 256; i++)
+    if (i >= 128 && i < 256)
+      {
+       dummy (s[i - 128][0]);
+       ++j;
+      }
+
+  return j;
+}
+
+int main(void)
+{
+  if (foo () != 128)
+    abort ();
+
+  return 0;
+}