blob: 38042ba014c45bbc2b60e088aef2ec9f08c2dc32 [file] [log] [blame]
// RUN: %clang_cc1 -fblocks -fsyntax-only -Wunused-but-set-variable -verify %s
struct S {
int i;
};
int f0() {
int y; // expected-warning{{variable 'y' set but not used}}
y = 0;
int z __attribute__((unused));
z = 0;
struct S s; // expected-warning{{variable 's' set but not used}}
struct S t;
s = t;
// Don't warn for an extern variable.
extern int w;
w = 0;
// Following gcc, this should not warn.
int a;
w = (a = 0);
// Following gcc, warn for a volatile variable.
volatile int b; // expected-warning{{variable 'b' set but not used}}
b = 0;
int x;
x = 0;
return x;
}
void f1(void) {
(void)^() {
int y; // expected-warning{{variable 'y' set but not used}}
y = 0;
int x;
x = 0;
return x;
};
}
void f2 (void) {
// Don't warn, even if it's only used in a non-ODR context.
int x;
x = 0;
(void) sizeof(x);
}
void for_cleanup(int *x) {
*x = 0;
}
void f3(void) {
// Don't warn if the __cleanup__ attribute is used.
__attribute__((__cleanup__(for_cleanup))) int x;
x = 5;
}