2018-01-04 06:22:48 +08:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -fdouble-square-bracket-attributes -verify
|
2008-02-22 03:44:16 +08:00
|
|
|
|
2013-07-24 03:30:11 +08:00
|
|
|
void __attribute__((annotate("foo"))) foo(float *a) {
|
2008-02-22 03:44:16 +08:00
|
|
|
__attribute__((annotate("bar"))) int x;
|
2018-01-04 06:22:48 +08:00
|
|
|
[[clang::annotate("bar")]] int x2;
|
2013-07-30 09:31:03 +08:00
|
|
|
__attribute__((annotate(1))) int y; // expected-error {{'annotate' attribute requires a string}}
|
2018-01-04 06:22:48 +08:00
|
|
|
[[clang::annotate(1)]] int y2; // expected-error {{'annotate' attribute requires a string}}
|
2013-07-24 03:30:11 +08:00
|
|
|
__attribute__((annotate("bar", 1))) int z; // expected-error {{'annotate' attribute takes one argument}}
|
2018-01-04 06:22:48 +08:00
|
|
|
[[clang::annotate("bar", 1)]] int z2; // expected-error {{'annotate' attribute takes one argument}}
|
|
|
|
|
2012-04-29 01:39:16 +08:00
|
|
|
int u = __builtin_annotation(z, (char*) 0); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}}
|
|
|
|
int v = __builtin_annotation(z, (char*) L"bar"); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}}
|
2011-09-10 06:41:49 +08:00
|
|
|
int w = __builtin_annotation(z, "foo");
|
2012-04-29 01:39:16 +08:00
|
|
|
float b = __builtin_annotation(*a, "foo"); // expected-error {{first argument to __builtin_annotation must be an integer}}
|
2008-02-22 03:44:16 +08:00
|
|
|
}
|