repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git]
/
clang
/
test
/
Parser
/
knr_parameter_attributes.c
blob
b11a75ed20753d9fa7113fc06e03fefd76c1edbe
1
// RUN: %clang_cc1 -fsyntax-only -W -Wall -Werror -verify %s
2
// expected-no-diagnostics
3
4
int
f
(
int
i
__attribute__
((
__unused__
)))
5
{
6
return
0
;
7
}
8
int
g
(
i
)
9
int
i
__attribute__
((
__unused__
));
10
{
11
return
0
;
12
}