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
/
indirect-goto.c
blob
4c1c6c328a18ff74eb5f501a4378d942615b09ff
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
struct
c
{
int
x
;};
4
int
a
(
struct
c x
,
long long
y
) {
5
void const
*
l1_ptr
= &&
l1
;
6
goto
*
l1_ptr
;
7
l1
:
8
goto
*
x
;
// expected-error{{incompatible type}}
9
goto
*
y
;
// expected-warning{{incompatible integer to pointer conversion}}
10
}
11