diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/pr23929.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/pr23929.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr23929.c b/gcc/testsuite/gcc.c-torture/compile/pr23929.c new file mode 100644 index 0000000..210bb585 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr23929.c @@ -0,0 +1,21 @@ +/* PR tree-optimization/23929 */ + +extern void bar (char *); + +void +foo (int n, char *z) +{ + char b[2048]; + int x, y; + + bar (b); + for (y = 0; y < 60; y++) + if (n == 600) + for (x = 0; x < 320;) + { + *z++ = b[x]; + x += 1; + *z++ = b[x]; + x += 1; + } +} |