blob: 144f62d0992b9eff662603e25fd2d27da57e6b6c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// PR947
2// RUN: %llvmgcc %s -c -o -
3
4void foo() {
5 void *ptr;
6 label:
7 ptr = &&label;
8
9 goto *ptr;
10 }