diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/unsorted/stuct.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/unsorted/stuct.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/unsorted/stuct.c b/gcc_arm/testsuite/gcc.c-torture/unsorted/stuct.c deleted file mode 100755 index deb838d..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/unsorted/stuct.c +++ /dev/null @@ -1,22 +0,0 @@ -#ifdef STACK_SIZE -#define SIZE STACK_SIZE / 8 -#else -#define SIZE 10000000 -#endif - -struct foo -{ - int a, b, c; - int arr[SIZE]; -}; - -struct foo s, ss; - -main () -{ - - s.b = 2; - s.c = 3; - ss.b = 2; - ss.c = 3; -} |