blob: 5b2727752bbd5aafe77c37d805e912fb8ca6f7a2 [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 Lerouge77f68bb2011-09-09 22:41:49 +00007 int u = __builtin_annotation(z, (char*) 0); // expected-error {{__builtin_annotation requires a non wide string constant}}
8 int v = __builtin_annotation(z, (char*) L"bar"); // expected-error {{__builtin_annotation requires a non wide string constant}}
9 int w = __builtin_annotation(z, "foo");
Nate Begeman86e07b62008-02-21 19:44:16 +000010}