Jon Roelofs | 7f6e3316 | 2021-02-23 08:01:27 -0800 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s -triple arm64-apple-ios |
| 2 | |
| 3 | #pragma clang section bss = "" data = "" rodata = "" text = "" |
| 4 | #pragma clang section bss = "" data = "" rodata = "" text = "__TEXT,__text" |
| 5 | #pragma clang section bss = "" data = "" rodata = "" text = "badname" // expected-error {{argument to #pragma section is not valid for this target: mach-o section specifier requires a segment and section separated by a comma}} |
| 6 | #pragma clang section bss = "" data = "" rodata = "" text = "__TEXT,__namethatiswaytoolong" // expected-error {{argument to #pragma section is not valid for this target: mach-o section specifier requires a section whose length is between 1 and 16 characters}} |
| 7 | #pragma clang section |
| 8 | |
| 9 | int a; |