File: constexpr-binop.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 (33 lines) | stat: -rw-r--r-- 1,254 bytes parent folder | download | duplicates (5)
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
32
33
static int a[] = {
	[0 + 0] = 0,						// OK
	[0 + 0.] = 0,						// KO
	[(void*)0 + 0] = 0,					// KO
	[0 + __builtin_choose_expr(0, 0, 0)] = 0,		// OK
	[0 + __builtin_choose_expr(0, 0., 0)] = 0,		// OK
	[0 + __builtin_choose_expr(0, 0, 0.)] = 0,		// KO
	[0 < 0] = 0,						// OK
	[0 < 0.] = 0,						// KO
	[0 < __builtin_choose_expr(0, 0, 0)] = 0,		// OK
	[0 < __builtin_choose_expr(0, 0., 0)] = 0,		// OK
	[0 < __builtin_choose_expr(0, 0, 0.)] = 0,		// KO
	[0 && 0] = 0,						// OK
	[0 && 0.] = 0,						// KO
	[0 && __builtin_choose_expr(0, 0, 0)] = 0,		// OK
	[0 && __builtin_choose_expr(0, 0., 0)] = 0,		// OK
	[0 && __builtin_choose_expr(0, 0, 0.)] = 0,		// KO
	[0 + __builtin_types_compatible_p(int, float)] = 0,	// OK
};

/*
 * check-name: constexprness in binops and alike
 *
 * check-error-start
constexpr-binop.c:3:12: error: bad constant expression
constexpr-binop.c:4:19: error: bad integer constant expression
constexpr-binop.c:7:12: error: bad constant expression
constexpr-binop.c:9:12: error: bad integer constant expression
constexpr-binop.c:12:12: error: bad integer constant expression
constexpr-binop.c:14:12: error: bad integer constant expression
constexpr-binop.c:17:12: error: bad integer constant expression
 * check-error-end
 */