diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.wendy/gnu4.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.wendy/gnu4.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc_arm/testsuite/gcc.wendy/gnu4.c b/gcc_arm/testsuite/gcc.wendy/gnu4.c deleted file mode 100755 index e8d2af9..0000000 --- a/gcc_arm/testsuite/gcc.wendy/gnu4.c +++ /dev/null @@ -1,15 +0,0 @@ -struct s {int x[5];}; -main() -{ - struct s {struct s *next; int i;}; - static struct s sa[2]; - - /* bar(sa[0].next->x[4]); */ - printf("Test passed (if it compiled)\n"); - exit(0); - bar(sa[0].next->i); -} - -bar(i) -int i; -{} |