aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/uninit-variables.c
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2012-07-17 00:06:14 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2012-07-17 00:06:14 +0000
commit9532e0d89ca2afa556f032aa9377f6ec1d3eaa3e (patch)
treee07d0329178ac5601de45085bf65fe3d8534548d /test/Sema/uninit-variables.c
parent89e5aaf57e20b39e35b0d068ebbc09ae736f2e1e (diff)
-Wuninitialized: Split the classification of DeclRefExprs as initialization or
use out of TransferFunctions, and compute it in advance rather than on-the-fly. This allows us to handle compound assignments with DeclRefExprs on the RHS correctly, and also makes it trivial to treat const& function parameters as not initializing the argument. The patch also makes both of those changes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160330 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/uninit-variables.c')
-rw-r--r--test/Sema/uninit-variables.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/test/Sema/uninit-variables.c b/test/Sema/uninit-variables.c
index 2630b70ec0..4e3d74b3ea 100644
--- a/test/Sema/uninit-variables.c
+++ b/test/Sema/uninit-variables.c
@@ -33,8 +33,8 @@ int test5() {
int test6() {
int x; // expected-note{{initialize the variable 'x' to silence this warning}}
- x += 2; // expected-warning{{variable 'x' is uninitialized when used here}}
- return x;
+ x += 2;
+ return x; // expected-warning{{variable 'x' is uninitialized when used here}}
}
int test7(int y) {
@@ -485,3 +485,16 @@ int returns_twice() {
}
return a;
}
+
+int compound_assign(int *arr, int n) {
+ int sum; // expected-note {{initialize}}
+ for (int i = 0; i < n; ++i)
+ sum += arr[i];
+ return sum / n; // expected-warning {{variable 'sum' is uninitialized}}
+}
+
+void compound_assign_2(int n) {
+ volatile int ignore;
+ for (int j = 0; j < n; ++j)
+ ignore += test1(); // ok
+}