summaryrefslogtreecommitdiffstats
path: root/test/Sema/warn-unused-function.c
blob: 178527f01c0f7226d5e0032abf1dc85c19e38e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -fsyntax-only -Wunused-function -verify %s

void foo() {}
static void f2() {} 
static void f1() {f2();} // expected-warning{{unused}}

static int f0() { return 17; } // expected-warning{{unused}}
int x = sizeof(f0());

static void f3();
extern void f3() { } // expected-warning{{unused}}

// FIXME: This will trigger a warning when it should not.
// Update once PR6281 is fixed.
//inline static void f4();
//void f4() { } 
OpenPOWER on IntegriCloud