aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/20040308-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/20040308-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/execute/20040308-1.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/20040308-1.c b/gcc/testsuite/gcc.c-torture/execute/20040308-1.c
deleted file mode 100644
index 4c63535e7f7..00000000000
--- a/gcc/testsuite/gcc.c-torture/execute/20040308-1.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* This used to fail on SPARC with an unaligned memory access. */
-
-void foo(int n)
-{
- struct S {
- int i[n];
- unsigned int b:1;
- int i2;
- } __attribute__ ((packed)) __attribute__ ((aligned (4)));
-
- struct S s;
-
- s.i2 = 0;
-}
-
-int main(void)
-{
- foo(4);
-
- return 0;
-}