diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-04-08 18:45:10 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-04-08 18:45:10 +0000 |
commit | 809500fc2c13c8173a16b052304d983864e4a1e1 (patch) | |
tree | 4fc2f184c499d106f29a386c452b49e5197bf63d /test/SemaCXX/attr-no-sanitize-address.cpp | |
parent | be7c9ec198dcdb5bf73a35bfbb00b3333cb87909 (diff) |
Vendor import of clang trunk r178860:vendor/clang/clang-trunk-r178860
Notes
Notes:
svn path=/vendor/clang/dist/; revision=249261
svn path=/vendor/clang/clang-trunk-r178860/; revision=249262; tag=vendor/clang/clang-trunk-r178860
Diffstat (limited to 'test/SemaCXX/attr-no-sanitize-address.cpp')
-rw-r--r-- | test/SemaCXX/attr-no-sanitize-address.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/SemaCXX/attr-no-sanitize-address.cpp b/test/SemaCXX/attr-no-sanitize-address.cpp new file mode 100644 index 000000000000..dc4d79758c16 --- /dev/null +++ b/test/SemaCXX/attr-no-sanitize-address.cpp @@ -0,0 +1,37 @@ +// 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 {{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}} |