2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -analyze -checker-cfref -analyzer-store=region -verify %s
|
2008-11-20 08:46:15 +08:00
|
|
|
|
|
|
|
struct s {
|
|
|
|
int data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct s global;
|
|
|
|
|
|
|
|
void g(int);
|
|
|
|
|
|
|
|
void f4() {
|
|
|
|
int a;
|
|
|
|
if (global.data == 0)
|
|
|
|
a = 3;
|
2008-12-04 10:07:20 +08:00
|
|
|
if (global.data == 0) // When the true branch is feasible 'a = 3'.
|
2008-11-20 08:46:15 +08:00
|
|
|
g(a); // no-warning
|
|
|
|
}
|
2009-08-29 04:25:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Test uninitialized value due to part of the structure being uninitialized.
|
|
|
|
struct TestUninit { int x; int y; };
|
|
|
|
struct TestUninit test_uninit_aux();
|
2010-01-10 04:43:19 +08:00
|
|
|
void test_unit_aux2(int);
|
2009-08-29 04:25:33 +08:00
|
|
|
void test_uninit_pos() {
|
|
|
|
struct TestUninit v1 = { 0, 0 };
|
|
|
|
struct TestUninit v2 = test_uninit_aux();
|
|
|
|
int z;
|
2009-11-04 12:24:16 +08:00
|
|
|
v1.y = z; // expected-warning{{Assigned value is garbage or undefined}}
|
|
|
|
test_unit_aux2(v2.x + v1.y);
|
2009-08-29 04:25:33 +08:00
|
|
|
}
|
2009-11-04 12:24:16 +08:00
|
|
|
void test_uninit_pos_2() {
|
|
|
|
struct TestUninit v1 = { 0, 0 };
|
|
|
|
struct TestUninit v2;
|
|
|
|
test_unit_aux2(v2.x + v1.y); // expected-warning{{The left operand of '+' is a garbage value}}
|
|
|
|
}
|
|
|
|
void test_uninit_pos_3() {
|
|
|
|
struct TestUninit v1 = { 0, 0 };
|
|
|
|
struct TestUninit v2;
|
|
|
|
test_unit_aux2(v1.y + v2.x); // expected-warning{{The right operand of '+' is a garbage value}}
|
|
|
|
}
|
|
|
|
|
2009-08-29 04:25:33 +08:00
|
|
|
void test_uninit_neg() {
|
|
|
|
struct TestUninit v1 = { 0, 0 };
|
|
|
|
struct TestUninit v2 = test_uninit_aux();
|
|
|
|
test_unit_aux2(v2.x + v1.y); // no-warning
|
|
|
|
}
|
|
|
|
|