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