aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/warn-unused-parameters.c
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-06-19 23:52:42 +0000
committerDouglas Gregor <dgregor@apple.com>2009-06-19 23:52:42 +0000
commite0762c92110dfdcdd207db461a4ea17afd168f1e (patch)
treeca454873887ffee6570e846ff9e56289360f18f2 /test/Sema/warn-unused-parameters.c
parent7d5c74ecbbd8719436c071f38657bc8e97ee4a24 (diff)
Keep track of when declarations are "used" according to C and
C++. This logic is required to trigger implicit instantiation of function templates and member functions of class templates, which will be implemented separately. This commit includes support for -Wunused-parameter, printing warnings for named parameters that are not used within a function/Objective-C method/block. Fixes <rdar://problem/6505209>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73797 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/warn-unused-parameters.c')
-rw-r--r--test/Sema/warn-unused-parameters.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Sema/warn-unused-parameters.c b/test/Sema/warn-unused-parameters.c
new file mode 100644
index 0000000000..115bbab815
--- /dev/null
+++ b/test/Sema/warn-unused-parameters.c
@@ -0,0 +1,13 @@
+// RUN: clang -fsyntax-only -Wunused-parameter %s -Xclang -verify
+
+int f0(int x,
+ int y, // expected-warning{{unused}}
+ int z __attribute__((unused))) {
+ return x;
+}
+
+void f1() {
+ (void)^(int x,
+ int y, // expected-warning{{unused}}
+ int z __attribute__((unused))) { return x; };
+} \ No newline at end of file