1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CFrontend/2007-02-07-AddrLabel.c
Chris Lattner 89bd4c47e1 New testcase for PR947
llvm-svn: 34038
2007-02-08 04:34:03 +00:00

11 lines
115 B
C

// PR947
// RUN: %llvmgcc %s -c -o -
void foo() {
void *ptr;
label:
ptr = &&label;
goto *ptr;
}