File: builtin-objsize0.c

package info (click to toggle)
sparse 0.6.5~rc1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,768 kB
  • sloc: ansic: 46,405; sh: 614; perl: 299; python: 296; makefile: 282
file content (25 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (3)
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
#define bos(O, T)	__builtin_object_size(O, T)

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

static struct s s;
static char *p = &s.arr[1];
static int  *q = &s.i;

int obj_int0(void) { return bos(&s.i, 0) == 8; }
int obj_arr0(void) { return bos(&s.arr[1], 0) == 15; }

int ptr_int(struct s *p) { return bos(&p->i, 0) == -1; }
int ptr_arr(struct s *p) { return bos(&p->arr[1], 0) == -1; }

/*
 * check-name: builtin-objsize0
 * check-command: test-linearize -Wno-decl $file
 *
 * check-output-ignore
 * check-output-returns: 1
 */