OSDN Git Service

2003-04-21 Andreas Tobler <a.tobler@schweiz.ch>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / packed1.C
1 // { dg-do run { xfail arm-*-* mips-*-* powerpc-*-* sh-*-* sparc-*-* } }
2
3 // NMS:2003-04-21 this fails on strict aligned architectures again,
4 // the patch was reverted because it broke something more important.
5
6 // Copyright (C) 2002 Free Software Foundation, Inc.
7 // Contributed by Nathan Sidwell 8 Aug 2002 <nathan@codesourcery.com>
8
9 // WRS SPR 63496, lost packed attribute when accessing a packed
10 // field. This matters on aligned architectures like sh
11
12 struct thing { int m; };
13
14 struct pod {char a; thing m __attribute__ ((packed)); };
15
16 int main ()
17 {
18   thing t;
19   pod p;
20   
21   p.m = t; /* runtime bus error here */
22
23   return 0;
24   
25 }