2021-06-02 05:49:34 +08:00
|
|
|
// 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);
|
|
|
|
|
2021-06-15 01:15:55 +08:00
|
|
|
// Following gcc, warn for a volatile variable.
|
|
|
|
volatile int b; // expected-warning{{variable 'b' set but not used}}
|
|
|
|
b = 0;
|
|
|
|
|
2021-06-02 05:49:34 +08:00
|
|
|
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);
|
|
|
|
}
|
2021-09-16 06:57:41 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|