blob: 144f62d0992b9eff662603e25fd2d27da57e6b6c [file] [log] [blame]
// PR947
// RUN: %llvmgcc %s -c -o -
void foo() {
void *ptr;
label:
ptr = &&label;
goto *ptr;
}