Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Sema / attr-unused.c
blob6a7ea951a36097e64ac7f3773f70580194e4e1fe
1 // RUN: %clang_cc1 -verify -Wunused -Wused-but-marked-unused -Wunused-parameter -Wunused -fsyntax-only %s
3 static void (*fp0)(void) __attribute__((unused));
5 static void __attribute__((unused)) f0(void);
7 // On K&R
8 int f1() __attribute__((unused));
10 int g0 __attribute__((unused));
12 int f2() __attribute__((unused(1, 2))); // expected-error {{attribute requires 0 argument(s)}}
14 struct Test0_unused {} __attribute__((unused));
15 struct Test0_not_unused {};
16 typedef int Int_unused __attribute__((unused));
17 typedef int Int_not_unused;
19 void test0() {
20 int x; // expected-warning {{unused variable}}
22 Int_not_unused i0; // expected-warning {{unused variable}}
23 Int_unused i1; // expected-warning {{'Int_unused' was marked unused but was used}}
25 struct Test0_not_unused s0; // expected-warning {{unused variable}}
26 struct Test0_unused s1; // expected-warning {{'Test0_unused' was marked unused but was used}}
29 int f3(int x) { // expected-warning{{unused parameter 'x'}}
30 return 0;
33 int f4(int x) {
34 return x;
37 int f5(int x __attribute__((__unused__))) {
38 return 0;
41 int f6(int x __attribute__((__unused__))) {
42 return x; // expected-warning{{'x' was marked unused but was used}}