blob: 144f62d0992b9eff662603e25fd2d27da57e6b6c [file] [log] [blame]
Chris Lattnerf596a972007-02-08 04:34:03 +00001// PR947
2// RUN: %llvmgcc %s -c -o -
3
4void foo() {
5 void *ptr;
6 label:
7 ptr = &&label;
8
9 goto *ptr;
10 }