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