blob: a8d05243321fbc1388a4589a5246b9a9ef07a325 [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);
}