aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-09-26 23:05:47 +0000
committerTed Kremenek <kremenek@apple.com>2008-09-26 23:05:47 +0000
commitd2025e26738c3017af6685e342a3a746cdf8249f (patch)
treee2e471e4db40772d9ca93387b979e74a5cd80530
parent610a09e409bea151a42dd907768f1e0c4b103f1f (diff)
Add more control-flow to test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56707 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/dead-stores.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Analysis/dead-stores.c b/test/Analysis/dead-stores.c
index 7335df5118..2a67afd0b0 100644
--- a/test/Analysis/dead-stores.c
+++ b/test/Analysis/dead-stores.c
@@ -116,7 +116,8 @@ void f15(unsigned x, unsigned y) {
int f16(int x) {
x = x * 2;
- x = sizeof(int [x = (x || x + 1) * 2]); // expected-warning{{Although the value stored to 'x' is used}}
+ x = sizeof(int [x = (x || x + 1) * 2]) // expected-warning{{Although the value stored to 'x' is used}}
+ ? 5 : 8;
return x;
}