aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/encode-8.m
blob: a10e4e9663a9488adbcee7ea82876a56108bdf47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* { dg-do run } */
/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */

#include <objc/runtime.h>
#include <stdlib.h>

union f
{
  char i;
  double f1;
  short t;
};

union g
{
  int i;
};


int main(void)
{
  if (objc_sizeof_type (@encode (union f)) != sizeof(union f))
   abort ();
  if (objc_alignof_type (@encode (union f)) != __alignof__(union f))
   abort ();
  if (objc_sizeof_type (@encode (union g)) != sizeof(union g))
   abort ();
  if (objc_alignof_type (@encode (union g)) != __alignof__(union g))
   abort ();
  return 0;
}