diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/stor.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/unsorted/stor.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/stor.c b/gcc/testsuite/gcc.c-torture/unsorted/stor.c new file mode 100755 index 0000000..57981ef --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/unsorted/stor.c @@ -0,0 +1,12 @@ +#define C 1 + +foo (p) + int *p; +{ + p[0] = C; + p[1] = C; + p[2] = C; + p[3] = C; + p[4] = C; + p[5] = C; +} |