1 /* Check that sizeof(bool) is 4 if we don't use special options. */
2 /* Matt Austern <austern@apple.com> */
3 /* { dg-do run { target powerpc*-*-darwin* } } */
5 int dummy1
[sizeof(_Bool
) - 3];
6 int dummy2
[5 - sizeof(_Bool
)];
10 return sizeof(_Bool
) == 4 ? 0 : 1;