Aaron Ballman | f09294c | 2018-01-03 22:22:48 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -fsyntax-only -fdouble-square-bracket-attributes -verify |
Nate Begeman | 86e07b6 | 2008-02-21 19:44:16 +0000 | [diff] [blame] | 2 | |
Aaron Ballman | baec778 | 2013-07-23 19:30:11 +0000 | [diff] [blame] | 3 | void __attribute__((annotate("foo"))) foo(float *a) { |
Nate Begeman | 86e07b6 | 2008-02-21 19:44:16 +0000 | [diff] [blame] | 4 | __attribute__((annotate("bar"))) int x; |
Aaron Ballman | f09294c | 2018-01-03 22:22:48 +0000 | [diff] [blame] | 5 | [[clang::annotate("bar")]] int x2; |
Aaron Ballman | 3cd6feb | 2013-07-30 01:31:03 +0000 | [diff] [blame] | 6 | __attribute__((annotate(1))) int y; // expected-error {{'annotate' attribute requires a string}} |
Aaron Ballman | f09294c | 2018-01-03 22:22:48 +0000 | [diff] [blame] | 7 | [[clang::annotate(1)]] int y2; // expected-error {{'annotate' attribute requires a string}} |
Aaron Ballman | baec778 | 2013-07-23 19:30:11 +0000 | [diff] [blame] | 8 | __attribute__((annotate("bar", 1))) int z; // expected-error {{'annotate' attribute takes one argument}} |
Aaron Ballman | f09294c | 2018-01-03 22:22:48 +0000 | [diff] [blame] | 9 | [[clang::annotate("bar", 1)]] int z2; // expected-error {{'annotate' attribute takes one argument}} |
| 10 | |
Julien Lerouge | e593921 | 2012-04-28 17:39:16 +0000 | [diff] [blame] | 11 | int u = __builtin_annotation(z, (char*) 0); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}} |
| 12 | int v = __builtin_annotation(z, (char*) L"bar"); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}} |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 13 | int w = __builtin_annotation(z, "foo"); |
Julien Lerouge | e593921 | 2012-04-28 17:39:16 +0000 | [diff] [blame] | 14 | float b = __builtin_annotation(*a, "foo"); // expected-error {{first argument to __builtin_annotation must be an integer}} |
Nate Begeman | 86e07b6 | 2008-02-21 19:44:16 +0000 | [diff] [blame] | 15 | } |