1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
2 | |
3 | #define NO_SANITIZE_THREAD __attribute__((no_sanitize_thread)) |
4 | |
5 | #if !__has_attribute(no_sanitize_thread) |
6 | #error "Should support no_sanitize_thread" |
7 | #endif |
8 | |
9 | void noanal_fun() NO_SANITIZE_THREAD; |
10 | |
11 | void noanal_fun_alt() __attribute__((__no_sanitize_thread__)); |
12 | |
13 | void noanal_fun_args() __attribute__((no_sanitize_thread(1))); // \ |
14 | // expected-error {{'no_sanitize_thread' attribute takes no arguments}} |
15 | |
16 | int noanal_testfn(int y) NO_SANITIZE_THREAD; |
17 | |
18 | int noanal_testfn(int y) { |
19 | int x NO_SANITIZE_THREAD = y; // \ |
20 | // expected-error {{'no_sanitize_thread' attribute only applies to functions}} |
21 | return x; |
22 | } |
23 | |
24 | int noanal_test_var NO_SANITIZE_THREAD; // \ |
25 | // expected-error {{'no_sanitize_thread' attribute only applies to functions}} |
26 | |
27 | class NoanalFoo { |
28 | private: |
29 | int test_field NO_SANITIZE_THREAD; // \ |
30 | // expected-error {{'no_sanitize_thread' attribute only applies to functions}} |
31 | void test_method() NO_SANITIZE_THREAD; |
32 | }; |
33 | |
34 | class NO_SANITIZE_THREAD NoanalTestClass { // \ |
35 | // expected-error {{'no_sanitize_thread' attribute only applies to functions}} |
36 | }; |
37 | |
38 | void noanal_fun_params(int lvar NO_SANITIZE_THREAD); // \ |
39 | // expected-error {{'no_sanitize_thread' attribute only applies to functions}} |
40 | |