blob: ef878d4c9824f3667f403d292ff8b629261e410b [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
3void __attribute__((annotate("foo"))) foo(float *a) {
4 __attribute__((annotate("bar"))) int x;
5 __attribute__((annotate(1))) int y; // expected-error {{argument to annotate attribute was not a string literal}}
John McCallbdc49d32011-03-02 12:15:05 +00006 __attribute__((annotate("bar", 1))) int z; // expected-error {{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}