llvm-for-llvmta/tools/clang/test/Import/indirect-goto/Inputs/F.cpp

7 lines
72 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
void f() {
void const *l1_ptr = &&l1;
goto *l1_ptr;
l1:
return;
}