2007-02-07-AddrLabel.c   [plain text]


// PR947
// RUN: %llvmgcc %s -c -o - 

void foo() {
    void *ptr;
  label:
    ptr = &&label;

    goto *ptr;
  }