Fixing a typo in configure.ac.
[oota-llvm.git] / test / CFrontend / 2007-02-07-AddrLabel.c
1 // PR947
2 // RUN: %llvmgcc %s -c -o - 
3
4 void foo() {
5     void *ptr;
6   label:
7     ptr = &&label;
8
9     goto *ptr;
10   }