f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
#define NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
|
|
|
|
#if !__has_attribute(no_sanitize_address)
|
|
#error "Should support no_sanitize_address"
|
|
#endif
|
|
|
|
void noanal_fun() NO_SANITIZE_ADDRESS;
|
|
|
|
void noanal_fun_args() __attribute__((no_sanitize_address(1))); // \
|
|
// expected-error {{'no_sanitize_address' attribute takes no arguments}}
|
|
|
|
int noanal_testfn(int y) NO_SANITIZE_ADDRESS;
|
|
|
|
int noanal_testfn(int y) {
|
|
int x NO_SANITIZE_ADDRESS = y; // \
|
|
// expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
|
|
return x;
|
|
}
|
|
|
|
int noanal_test_var NO_SANITIZE_ADDRESS; // \
|
|
// expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
|
|
|
|
class NoanalFoo {
|
|
private:
|
|
int test_field NO_SANITIZE_ADDRESS; // \
|
|
// expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
|
|
void test_method() NO_SANITIZE_ADDRESS;
|
|
};
|
|
|
|
class NO_SANITIZE_ADDRESS NoanalTestClass { // \
|
|
// expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
|
|
};
|
|
|
|
void noanal_fun_params(int lvar NO_SANITIZE_ADDRESS); // \
|
|
// expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
|