Lines Matching full:section
2 #pragma clang section bss = "mybss.1" data = "mydata.1" rodata = "myrodata.1" text = "mytext.1" // …
3 #pragma clang section bss="" data="" rodata="" text=""
4 #pragma clang section
6 #pragma clang section dss="mybss.2" // expected-error {{expected one of [bss|data|rodata|text|relro…
7 …pragma clang section deta="mydata.2" // expected-error {{expected one of [bss|data|rodata|text|rel…
8 …ragma clang section rodeta="rodata.2" // expected-error {{expected one of [bss|data|rodata|text|re…
9 #pragma clang section taxt="text.2" // expected-error {{expected one of [bss|data|rodata|text|relro…
11 …ma clang section section bss="mybss.2" // expected-error {{expected one of [bss|data|rodata|text|…
13 #pragma clang section bss "mybss.2" // expected-error {{expected '=' following '#pragma clang sec…
14 #pragma clang section data "mydata.2" // expected-error {{expected '=' following '#pragma clang s…
15 #pragma clang section rodata "myrodata.2" // expected-error {{expected '=' following '#pragma cla…
16 #pragma clang section text "text.2" // expected-error {{expected '=' following '#pragma clang sec…
17 #pragma clang section relro "relro.2" // expected-error {{expected '=' following '#pragma clang s…
18 …g section bss="" data="" rodata="" text="" more //expected-error {{expected one of [bss|data|rodat…
20 #pragma clang section bss = "mybss.3" data = "mybss.3" // expected-error {{this causes a section ty…
21 #pragma clang section rodata = "mydata.1" // expected-error {{this causes a section ty…
22 #pragma clang section bss = "myrodata.1" // expected-error {{this causes a section ty…
23 #pragma clang section text = "mybss.3" // expected-error {{this causes a section ty…
25 #pragma clang section rodata = "myrodata.4" // expected-note {{#pragma entered here}}
26 …x __attribute__((section("myrodata.4"))); // expected-error {{'x' causes a section type…
27 const int y __attribute__((section("myrodata.5"))) = 10; // expected-note {{declared here}}
28 #pragma clang section data = "myrodata.5" // expected-error {{this causes a section …
29 const int z __attribute__((section("myrodata.6"))) = 11;