blob: aabb97634babfa65183c805803e7151f98c868d7 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// RUN: %clang_cc1 -fsyntax-only -Wuninitialized-experimental -fsyntax-only %s -verify
int test1() {
int x;
return x; // expected-warning{{use of uninitialized variable 'x'}}
}
int test2() {
int x = 0;
return x; // no-warning
}
int test3() {
int x;
x = 0;
return x; // no-warning
}
int test4() {
int x;
++x; // expected-warning{{use of uninitialized variable 'x'}}
return x;
}
int test5() {
int x, y;
x = y; // expected-warning{{use of uninitialized variable 'y'}}
return x;
}
int test6() {
int x;
x += 2; // expected-warning{{use of uninitialized variable 'x'}}
return x;
}
int test7(int y) {
int x;
if (y)
x = 1;
return x; // expected-warning{{use of uninitialized variable 'x'}}
}
int test8(int y) {
int x;
if (y)
x = 1;
else
x = 0;
return x; // no-warning
}
int test9(int n) {
int x;
for (unsigned i = 0 ; i < n; ++i) {
if (i == n - 1)
break;
x = 1;
}
return x; // expected-warning{{use of uninitialized variable 'x'}}
}
int test10(unsigned n) {
int x;
for (unsigned i = 0 ; i < n; ++i) {
x = 1;
}
return x; // expected-warning{{use of uninitialized variable 'x'}}
}
int test11(unsigned n) {
int x;
for (unsigned i = 0 ; i <= n; ++i) {
x = 1;
}
return x; // expected-warning{{use of uninitialized variable 'x'}}
}
void test12(unsigned n) {
for (unsigned i ; n ; ++i) ; // expected-warning{{use of uninitialized variable 'i'}}
}
int test13() {
static int i;
return i; // no-warning
}
// Simply don't crash on this test case.
void test14() {
const char *p = 0;
for (;;) {}
}
void test15() {
int x = x; // expected-warning{{use of uninitialized variable 'x'}}
}
// Don't warn in the following example; shows dataflow confluence.
char *test16_aux();
void test16() {
char *p = test16_aux();
for (unsigned i = 0 ; i < 100 ; i++)
p[i] = 'a'; // no-warning
}
|