blob: 4a786d0a0163cf48d8af69098fa88e503f18bed7 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Nate Begeman86e07b62008-02-21 19:44:16 +00002
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003void __attribute__((annotate("foo"))) foo(float *a) {
Nate Begeman86e07b62008-02-21 19:44:16 +00004 __attribute__((annotate("bar"))) int x;
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00005 __attribute__((annotate(1))) int y; // expected-error {{'annotate' attribute requires a string}}
Aaron Ballmanbaec7782013-07-23 19:30:11 +00006 __attribute__((annotate("bar", 1))) int z; // expected-error {{'annotate' attribute takes one argument}}
Julien Lerougee5939212012-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 Lerouge77f68bb2011-09-09 22:41:49 +00009 int w = __builtin_annotation(z, "foo");
Julien Lerougee5939212012-04-28 17:39:16 +000010 float b = __builtin_annotation(*a, "foo"); // expected-error {{first argument to __builtin_annotation must be an integer}}
Nate Begeman86e07b62008-02-21 19:44:16 +000011}