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
/
implicit-cast.c
blob
088b1958d9b85c43482a38f3e4852fb340f08c9f
1
// RUN: %clang_cc1 -fsyntax-only %s
2
3
static char
*
test1
(
int
cf
) {
4
return
cf
?
"abc"
:
0
;
5
}
6
static char
*
test2
(
int
cf
) {
7
return
cf
?
0
:
"abc"
;
8
}