diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/compile/931018-1.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/compile/931018-1.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/compile/931018-1.c b/gcc_arm/testsuite/gcc.c-torture/compile/931018-1.c deleted file mode 100755 index 7efe40e..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/compile/931018-1.c +++ /dev/null @@ -1,14 +0,0 @@ -typedef struct -{ - int a, b; -} T; - -f (T *bs) -{ - long long x; - x = ({ - union { T s; long long l; } u; - u.s = *bs; - u.l; - }); -} |