[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaCXX / attr-no-sanitize-memory.cpp
blob7301412db2eda96521705f426deb07819348285d
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 #define NO_SANITIZE_MEMORY __attribute__((no_sanitize_memory))
5 #if !__has_attribute(no_sanitize_memory)
6 #error "Should support no_sanitize_memory"
7 #endif
9 void no_analyze() NO_SANITIZE_MEMORY;
11 void no_analyze_alt() __attribute__((__no_sanitize_memory__));
13 void no_analyze_args() __attribute__((no_sanitize_memory(1))); // \
14 // expected-error {{'no_sanitize_memory' attribute takes no arguments}}
16 int no_analyze_testfn(int y) NO_SANITIZE_MEMORY;
18 int no_analyze_testfn(int y) {
19 int x NO_SANITIZE_MEMORY = y; // \
20 // expected-error {{'no_sanitize_memory' attribute only applies to functions}}
21 return x;
24 int no_analyze_test_var NO_SANITIZE_MEMORY; // \
25 // expected-error {{'no_sanitize_memory' attribute only applies to functions}}
27 class NoAnalyzeFoo {
28 private:
29 int test_field NO_SANITIZE_MEMORY; // \
30 // expected-error {{'no_sanitize_memory' attribute only applies to functions}}
31 void test_method() NO_SANITIZE_MEMORY;
34 class NO_SANITIZE_MEMORY NoAnalyzeTestClass { // \
35 // expected-error {{'no_sanitize_memory' attribute only applies to functions}}
38 void no_analyze_params(int lvar NO_SANITIZE_MEMORY); // \
39 // expected-error {{'no_sanitize_memory' attribute only applies to functions}}