blob: 9ca28630552bc8542e617b00336bd43cecc8a0f9 [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))); // \
Aaron Ballmanbaec7782013-07-23 19:30:11 +000012 // expected-error {{'no_sanitize_address' attribute takes no arguments}}
Kostya Serebryany85aee962013-02-26 06:58:27 +000013
14int noanal_testfn(int y) NO_SANITIZE_ADDRESS;
15
16int noanal_testfn(int y) {
17 int x NO_SANITIZE_ADDRESS = y; // \
Stephen Hines6bcf27b2014-05-29 04:14:42 -070018 // expected-error {{'no_sanitize_address' attribute only applies to functions}}
Kostya Serebryany85aee962013-02-26 06:58:27 +000019 return x;
20}
21
22int noanal_test_var NO_SANITIZE_ADDRESS; // \
Stephen Hines6bcf27b2014-05-29 04:14:42 -070023 // expected-error {{'no_sanitize_address' attribute only applies to functions}}
Kostya Serebryany85aee962013-02-26 06:58:27 +000024
25class NoanalFoo {
26 private:
27 int test_field NO_SANITIZE_ADDRESS; // \
Stephen Hines6bcf27b2014-05-29 04:14:42 -070028 // expected-error {{'no_sanitize_address' attribute only applies to functions}}
Kostya Serebryany85aee962013-02-26 06:58:27 +000029 void test_method() NO_SANITIZE_ADDRESS;
30};
31
32class NO_SANITIZE_ADDRESS NoanalTestClass { // \
Stephen Hines6bcf27b2014-05-29 04:14:42 -070033 // expected-error {{'no_sanitize_address' attribute only applies to functions}}
Kostya Serebryany85aee962013-02-26 06:58:27 +000034};
35
36void noanal_fun_params(int lvar NO_SANITIZE_ADDRESS); // \
Stephen Hines6bcf27b2014-05-29 04:14:42 -070037 // expected-error {{'no_sanitize_address' attribute only applies to functions}}