1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
// RUN: %clang_cc1 -fms-extensions -emit-llvm -o - %s | FileCheck %s
extern "C" {
void foo();
void foo1();
void foo2();
void foo3();
#pragma alloc_text("abc", foo, foo1)
#pragma alloc_text("def", foo2)
#pragma alloc_text("def", foo3)
// CHECK-LABEL: define{{.*}} void @foo() {{.*}} section "abc"
void foo() {}
// CHECK-LABEL: define{{.*}} void @foo1() {{.*}} section "abc"
void foo1() {}
// CHECK-LABEL: define{{.*}} void @foo2() {{.*}} section "def"
void foo2() {}
// CHECK-LABEL: define{{.*}} void @foo3() {{.*}} section "def"
void foo3() {}
}
|