aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/builtin-objsize1.c
blob: 1f285fc5f6acabba567a1572f62ef617c2d0da2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#define bos(O, T)	__builtin_object_size(O, T)

struct s {
	char arr[8];
	__INT32_TYPE__ i;
	__INT32_TYPE__ padding;
};

static struct s s;

int obj_int1(void) { return bos(&s.i, 1) == 4; }
int obj_arr1(void) { return bos(&s.arr[1], 1) == 7; }

/*
 * check-name: builtin-objsize1
 * check-command: test-linearize -Wno-decl $file
 * check-known-to-fail
 *
 * check-output-ignore
 * check-output-returns: 1
 */