Home | History | Annotate | Download | only in SemaCXX
      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 
      9 void noanal_fun() NO_SANITIZE_MEMORY;
     10 
     11 void noanal_fun_args() __attribute__((no_sanitize_memory(1))); // \
     12   // expected-error {{'no_sanitize_memory' attribute takes no arguments}}
     13 
     14 int noanal_testfn(int y) NO_SANITIZE_MEMORY;
     15 
     16 int noanal_testfn(int y) {
     17   int x NO_SANITIZE_MEMORY = y; // \
     18     // expected-error {{'no_sanitize_memory' attribute only applies to functions and methods}}
     19   return x;
     20 }
     21 
     22 int noanal_test_var NO_SANITIZE_MEMORY; // \
     23   // expected-error {{'no_sanitize_memory' attribute only applies to functions and methods}}
     24 
     25 class NoanalFoo {
     26  private:
     27   int test_field NO_SANITIZE_MEMORY; // \
     28     // expected-error {{'no_sanitize_memory' attribute only applies to functions and methods}}
     29   void test_method() NO_SANITIZE_MEMORY;
     30 };
     31 
     32 class NO_SANITIZE_MEMORY NoanalTestClass { // \
     33   // expected-error {{'no_sanitize_memory' attribute only applies to functions and methods}}
     34 };
     35 
     36 void noanal_fun_params(int lvar NO_SANITIZE_MEMORY); // \
     37   // expected-error {{'no_sanitize_memory' attribute only applies to functions and methods}}
     38