OSDN Git Service

* gcc.target/cris/peep2-xsrand.c, gcc.target/cris/asmreg-1.c,
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / encode-7.m
1 /* { dg-options "-fgnu-runtime" } */
2 /* { dg-do run } */
3
4 #include <objc/encoding.h>
5 #include <stdlib.h>
6
7 struct f
8 {
9   _Bool a;
10 };
11
12
13 int main(void)
14 {
15   if (objc_sizeof_type (@encode (struct f)) != sizeof(struct f))
16    abort ();
17   return 0;
18 }