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* && ilp32 } } } */
4
5int dummy1[sizeof(_Bool) - 3];
6int dummy2[5 - sizeof(_Bool)];
7
8int main()
9{
10  return sizeof(_Bool) == 4 ? 0 : 1;
11}
12