blob: 0467fb3a961f704fe9dff0e5881135ca4a8ee4c3 [file] [log] [blame]
/* Check that sizeof(bool) is 4 if we don't use special options. */
/* Matt Austern <austern@apple.com> */
/* { dg-do run { target powerpc*-*-darwin* } } */
/* APPLE LOCAL 64 bit default */
/* { dg-require-effective-target ilp32 } */
int dummy1[sizeof(_Bool) - 3];
int dummy2[5 - sizeof(_Bool)];
int main()
{
return sizeof(_Bool) == 4 ? 0 : 1;
}