1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/FrontendC/2007-02-07-AddrLabel.c

11 lines
115 B
C
Raw Normal View History

2007-02-08 05:34:03 +01:00
// PR947
// RUN: %llvmgcc %s -c -o -
void foo() {
void *ptr;
label:
ptr = &&label;
goto *ptr;
}