Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:section

7 // CHECK: @t13 = global %struct.s0 zeroinitializer, section "SECT"
9 struct s0 t13 __attribute__((section("SECT"))) = { 0 };
11 // CHECK: @t14.x = internal global i32 0, section "SECT"
13 static int x __attribute__((section("SECT"))) = 0;
26 // CHECK: @t12 = global i32 0, section "SECT"
27 int t12 __attribute__((section("SECT")));
59 // CHECK: define void @t10() [[NUW]] section "SECT" {
60 void t10(void) __attribute__((section("SECT")));
62 // CHECK: define void @t11() [[NUW]] section "SECT" {
63 void __attribute__((section("SECT"))) t11(void) {}
87 // use the section in the definition.
88 void __attribute__((section(".foo"))) t22(void);
89 void __attribute__((section(".bar"))) t22(void) {}
91 // CHECK: define void @t22() [[NUW]] section ".bar"