Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / ext / packed8.C
blob1f86cfc0a69ebac224c597ab0f4f664f6ae8d217
1 // PR c++/18378
2 // NOTE: This test assumes packed structure layout differs from unpacked
3 //       structure layout.  This isn't true, e.g., with the default
4 //       arm-none-elf options.
5 // { dg-options "-mstructure-size-boundary=8" { target arm-*-* } }
7 class A
9 public:
10   int i;
12   A() {}
13   A(const A& a) { i = a.i; }
16 class B
18   A a __attribute__((packed)); // { dg-warning "attribute ignored" "" { target default_packed } }
20 public:
21   B() {}
22   A GetA() { return a; } // { dg-error "" "" { target { ! default_packed } } }