mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 03:07:06 +00:00
11 lines
115 B
C
11 lines
115 B
C
|
// PR947
|
||
|
// RUN: %llvmgcc %s -c -o -
|
||
|
|
||
|
void foo() {
|
||
|
void *ptr;
|
||
|
label:
|
||
|
ptr = &&label;
|
||
|
|
||
|
goto *ptr;
|
||
|
}
|