Added test case to dead stores checker.

llvm-svn: 49647
This commit is contained in:
Ted Kremenek 2008-04-14 15:56:17 +00:00
parent 19bce7f18c
commit 16a8a3be41
1 changed files with 13 additions and 3 deletions

View File

@ -1,21 +1,31 @@
// RUN: clang -warn-dead-stores -verify %s
void x() {
void f1() {
int k, y;
int abc=1;
long idx=abc+3*5; // expected-warning {{value stored to variable is never used}}
}
void a(void *b) {
void f2(void *b) {
char *c = (char*)b; // no-warning
char *d = b+1; // expected-warning {{value stored to variable is never used}}
printf("%s", c);
}
void z() {
void f3() {
int r;
if ((r = f()) != 0) { // no-warning
int y = r; // no-warning
printf("the error is: %d\n", y);
}
}
void f4(int k) {
k = 1;
if (k)
f1();
k = 2; // expected-warning {{value stored to variable is never used}}
}