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