annotate clang/test/Sema/indirect-goto.c @ 169:1f21f60db75c
Added tag llvm10 for changeset 980e56f2e095
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Mon, 25 May 2020 09:26:57 +0900 |
parents |
1d019706d866 |
children |
c4bab56944e8 |
rev |
line source |
150
|
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
|