New testcase for PR947

llvm-svn: 34038
This commit is contained in:
Chris Lattner 2007-02-08 04:34:03 +00:00
parent 9ffe03c24e
commit 0591d43ea1
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// PR947
// RUN: %llvmgcc %s -c -o -
void foo() {
void *ptr;
label:
ptr = &&label;
goto *ptr;
}