1*67e74705SXin Li // RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions %s -triple x86_64-pc-win32
2*67e74705SXin Li
3*67e74705SXin Li #pragma const_seg(".my_const") // expected-note 2 {{#pragma entered here}}
4*67e74705SXin Li extern const int a;
5*67e74705SXin Li const int a = 1; // expected-note 2 {{declared here}}
6*67e74705SXin Li #pragma data_seg(".my_const") // expected-note {{#pragma entered here}}
7*67e74705SXin Li int b = 1; // expected-error {{'b' causes a section type conflict with 'a'}}
8*67e74705SXin Li #pragma data_seg()
9*67e74705SXin Li int c = 1;
10*67e74705SXin Li __declspec(allocate(".my_const")) int d = 1; // expected-error {{'d' causes a section type conflict with 'a'}}
11*67e74705SXin Li #pragma data_seg("\u") // expected-error {{\u used with no following hex digits}}
12*67e74705SXin Li #pragma data_seg("a" L"b") // expected-warning {{expected non-wide string literal in '#pragma data_seg'}}
13*67e74705SXin Li
14*67e74705SXin Li #pragma section(".my_seg", execute) // expected-note 2 {{#pragma entered her}}
15*67e74705SXin Li __declspec(allocate(".my_seg")) int int_my_seg;
16*67e74705SXin Li #pragma code_seg(".my_seg")
fn_my_seg(void)17*67e74705SXin Li void fn_my_seg(void){}
18*67e74705SXin Li
19*67e74705SXin Li __declspec(allocate(".bad_seg")) int int_bad_seg = 1; // expected-note {{declared here}}
20*67e74705SXin Li #pragma code_seg(".bad_seg") // expected-note {{#pragma entered here}}
fn_bad_seg(void)21*67e74705SXin Li void fn_bad_seg(void){} // expected-error {{'fn_bad_seg' causes a section type conflict with 'int_bad_seg'}}
22*67e74705SXin Li
23*67e74705SXin Li #pragma bss_seg // expected-warning {{missing '(' after '#pragma bss_seg' - ignoring}}
24*67e74705SXin Li #pragma bss_seg(L".my_seg") // expected-warning {{expected push, pop or a string literal for the section name in '#pragma bss_seg' - ignored}}
25*67e74705SXin Li #pragma bss_seg(1) // expected-warning {{expected push, pop or a string literal for the section name in '#pragma bss_seg' - ignored}}
26*67e74705SXin Li #pragma bss_seg(push)
27*67e74705SXin Li #pragma bss_seg(push, ".my_seg")
28*67e74705SXin Li #pragma bss_seg(push, 1) // expected-warning {{expected a stack label or a string literal for the section name in '#pragma bss_seg'}}
29*67e74705SXin Li #pragma bss_seg ".my_seg" // expected-warning {{missing '(' after '#pragma bss_seg' - ignoring}}
30*67e74705SXin Li #pragma bss_seg(push, my_label, 1) // expected-warning {{expected a string literal for the section name in '#pragma bss_seg' - ignored}}
31*67e74705SXin Li #pragma bss_seg(".my_seg", 1) // expected-warning {{missing ')' after '#pragma bss_seg' - ignoring}}
32*67e74705SXin Li #pragma bss_seg(".my_seg" // expected-warning {{missing ')' after '#pragma bss_seg' - ignoring}}
33*67e74705SXin Li
34*67e74705SXin Li #pragma section // expected-warning {{missing '(' after '#pragma section' - ignoring}}
35*67e74705SXin Li #pragma section( // expected-warning {{expected a string literal for the section name in '#pragma section' - ignored}}
36*67e74705SXin Li #pragma section(L".my_seg") // expected-warning {{expected a string literal for the section name in '#pragma section' - ignored}}
37*67e74705SXin Li #pragma section(".my_seg" // expected-warning {{missing ')' after '#pragma section' - ignoring}}
38*67e74705SXin Li #pragma section(".my_seg" 1 // expected-warning {{missing ')' after '#pragma section' - ignoring}}
39*67e74705SXin Li #pragma section(".my_seg", // expected-warning {{expected action or ')' in '#pragma section' - ignored}}
40*67e74705SXin Li #pragma section(".my_seg", read) // expected-error {{this causes a section type conflict with a prior #pragma section}}
41*67e74705SXin Li #pragma section(".my_seg", bogus) // expected-warning {{unknown action 'bogus' for '#pragma section' - ignored}}
42*67e74705SXin Li #pragma section(".my_seg", nopage) // expected-warning {{known but unsupported action 'nopage' for '#pragma section' - ignored}}
43*67e74705SXin Li #pragma section(".my_seg", read, write) // expected-error {{this causes a section type conflict with a prior #pragma section}}
44*67e74705SXin Li #pragma section(".my_seg", read, write, 1) // expected-warning {{expected action or ')' in '#pragma section' - ignored}}
45