File: cond_expr2.c

package info (click to toggle)
sparse 0.4.3%2B20110419-1
  • links: PTS, VCS
  • area: non-free
  • in suites: wheezy
  • size: 1,724 kB
  • sloc: ansic: 25,965; perl: 232; sh: 185; makefile: 131
file content (22 lines) | stat: -rw-r--r-- 869 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
extern const int *p;
extern volatile void *q;
extern volatile int *r;
static void f(void)
{
	q = 1 ? p : q;	// warn: const volatile void * -> const int *
	r = 1 ? r : q;	// OK: volatile void * -> volatile int *
	r = 1 ? r : p;	// warn: const volatile int * -> volatile int *
}
/*
 * check-name: type of conditional expression
 * check-description: Used to miss qualifier mixing and mishandle void *
 *
 * check-error-start
cond_expr2.c:6:11: warning: incorrect type in assignment (different modifiers)
cond_expr2.c:6:11:    expected void volatile *extern [addressable] [toplevel] q
cond_expr2.c:6:11:    got void const volatile *
cond_expr2.c:8:11: warning: incorrect type in assignment (different modifiers)
cond_expr2.c:8:11:    expected int volatile *extern [addressable] [toplevel] [assigned] r
cond_expr2.c:8:11:    got int const volatile *
 * check-error-end
 */