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
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
Sema
/
suppress-deprecated.c
blob
5b764aff86c97e7d28db027893aba97aaf86cd4b
1
// RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s
2
// expected-no-diagnostics
3
extern
void
OldFunction
(
void
)
__attribute__
((
deprecated
));
4
5
int
main
(
int
argc
,
const char
*
argv
[]) {
6
OldFunction
();
7
}
8