blob: 8d801c3cf27488212b7e59cc6f451aeb34bc3213 [file] [log] [blame]
Eli Friedman57a84fb2009-03-03 04:48:01 +00001// RUN: clang -emit-llvm < %s | grep i1 | count 1
2// All of these should uses the memory representation of _Bool
3struct teststruct1 {_Bool a, b;} test1;
4_Bool* test2;
5_Bool test3[10];
6_Bool (*test4)[];
7