You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
// REQUIRES: asserts
|
|
|
|
// CHECK: @a.a = internal global i8* blockaddress(@a, %A)
|
|
int a() {
|
|
A:;static void* a = &&A;
|
|
}
|
|
|
|
// PR14005
|
|
// CHECK: @b.ar = internal global {{.*}} sub (i{{..}} ptrtoint (i8* blockaddress(@b, %l2) to i{{..}}), i{{..}} ptrtoint (i8* blockaddress(@b, %l1) to i{{..}}))
|
|
int b() {
|
|
static int ar = &&l2 - &&l1;
|
|
l1:
|
|
return 10;
|
|
l2:
|
|
return 11;
|
|
}
|