From: H.J. Lu Date: Fri, 29 Jul 2011 05:17:36 +0000 (+0000) Subject: Add a testcase for PR rtl-optimization/47958. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7d7d50baf7dbd0d5cb6c16951007726b8cc7f66d;p=gcc.git Add a testcase for PR rtl-optimization/47958. 2011-07-28 H.J. Lu PR rtl-optimization/47958 * gcc.dg/torture/pr47958-1.c: New. From-SVN: r176914 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d5e61cb5e8b..aebaf018f75 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-07-28 H.J. Lu + + PR rtl-optimization/47958 + * gcc.dg/torture/pr47958-1.c: New. + 2011-07-29 Wei Guozhi PR rtl-optimization/49799 diff --git a/gcc/testsuite/gcc.dg/torture/pr47958-1.c b/gcc/testsuite/gcc.dg/torture/pr47958-1.c new file mode 100644 index 00000000000..9fdf142fc99 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr47958-1.c @@ -0,0 +1,13 @@ +/* { dg-do assemble } */ + +void (*foo[6][6]) (int); +void bar (hdR) + int hdR; +{ } +void xxx () +{ + unsigned int i, j; + for (i = 0; i < 6; ++i) + for (j = 0; j < 6; ++j) + foo [i][j] = bar; +}