blob: 9d459c2bb9922e33e5a55b8cac81c68608cc5f0f [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Nate Begemanb16d53e2008-02-21 19:44:16 +00002
Aaron Ballmanb7243382013-07-23 19:30:11 +00003void __attribute__((annotate("foo"))) foo(float *a) {
Nate Begemanb16d53e2008-02-21 19:44:16 +00004 __attribute__((annotate("bar"))) int x;
5 __attribute__((annotate(1))) int y; // expected-error {{argument to annotate attribute was not a string literal}}
Aaron Ballmanb7243382013-07-23 19:30:11 +00006 __attribute__((annotate("bar", 1))) int z; // expected-error {{'annotate' attribute takes one argument}}
Julien Lerouge4a5b4442012-04-28 17:39:16 +00007 int u = __builtin_annotation(z, (char*) 0); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}}
8 int v = __builtin_annotation(z, (char*) L"bar"); // expected-error {{second argument to __builtin_annotation must be a non-wide string constant}}
Julien Lerouge5a6b6982011-09-09 22:41:49 +00009 int w = __builtin_annotation(z, "foo");
Julien Lerouge4a5b4442012-04-28 17:39:16 +000010 float b = __builtin_annotation(*a, "foo"); // expected-error {{first argument to __builtin_annotation must be an integer}}
Nate Begemanb16d53e2008-02-21 19:44:16 +000011}