blob: ac9cc55b9fcb04cebcc54ba9975e2ccf934d493c [file] [log] [blame]
Alp Tokerbb17ff92013-10-28 23:47:09 +00001// RUN: %clang_cc1 -triple x86_64-unknown-unknown -std=c++11 -verify %s
Richard Smithd6e7fae2013-01-14 08:57:42 +00002
3// Error cases.
4
5[[gnu::this_attribute_does_not_exist]] int unknown_attr;
6// expected-warning@-1 {{unknown attribute 'this_attribute_does_not_exist' ignored}}
7int [[gnu::unused]] attr_on_type;
Richard Smithd03de6a2013-01-29 10:02:16 +00008// expected-error@-1 {{'unused' attribute cannot be applied to types}}
Richard Smithd6e7fae2013-01-14 08:57:42 +00009int *[[gnu::unused]] attr_on_ptr;
10// expected-warning@-1 {{attribute 'unused' ignored, because it cannot be applied to a type}}
11
12// Valid cases.
13
Rafael Espindola7e66ed32013-10-21 18:24:30 +000014void aliasb [[gnu::alias("_Z6alias1v")]] ();
Richard Smithd6e7fae2013-01-14 08:57:42 +000015void alias1() {}
Rafael Espindola7e66ed32013-10-21 18:24:30 +000016void aliasa [[gnu::alias("_Z6alias1v")]] ();
Richard Smithd6e7fae2013-01-14 08:57:42 +000017
Stephen Hines0e2c34f2015-03-23 12:09:02 -070018extern struct PR22493Ty {
19} PR22493 [[gnu::alias("_ZN7pcrecpp2RE6no_argE")]];
20
Richard Smithd6e7fae2013-01-14 08:57:42 +000021[[gnu::aligned(8)]] int aligned;
22void aligned_fn [[gnu::aligned(32)]] ();
23struct [[gnu::aligned(8)]] aligned_struct {};
24
Richard Smithd6e7fae2013-01-14 08:57:42 +000025void always_inline [[gnu::always_inline]] ();
26
27__thread int tls_model [[gnu::tls_model("local-exec")]];
28
29void cleanup(int *p) {
30 int n [[gnu::cleanup(cleanup)]];
31}
32
33void deprecated1 [[gnu::deprecated]] (); // expected-note {{here}}
34[[gnu::deprecated("custom message")]] void deprecated2(); // expected-note {{here}}
35void deprecated3() {
36 deprecated1(); // expected-warning {{deprecated}}
37 deprecated2(); // expected-warning {{custom message}}
38}
39
40[[gnu::naked(1,2,3)]] void naked(); // expected-error {{takes no arguments}}
41
42void nonnull [[gnu::nonnull]] (); // expected-warning {{applied to function with no pointer arguments}}
43
Richard Smith5c521662013-01-15 02:48:13 +000044// [[gnu::noreturn]] appertains to a declaration, and marks the innermost
45// function declarator in that declaration as being noreturn.
Richard Smithd6e7fae2013-01-14 08:57:42 +000046int noreturn [[gnu::noreturn]]; // expected-warning {{'noreturn' only applies to function types}}
Richard Smith5c521662013-01-15 02:48:13 +000047int noreturn_fn_1();
48int noreturn_fn_2() [[gnu::noreturn]]; // expected-warning {{cannot be applied to a type}}
49int noreturn_fn_3 [[gnu::noreturn]] ();
50[[gnu::noreturn]] int noreturn_fn_4();
51int (*noreturn_fn_ptr_1 [[gnu::noreturn]])() = &noreturn_fn_1; // expected-error {{cannot initialize}}
52int (*noreturn_fn_ptr_2 [[gnu::noreturn]])() = &noreturn_fn_3;
53[[gnu::noreturn]] int (*noreturn_fn_ptr_3)() = &noreturn_fn_1; // expected-error {{cannot initialize}}
54[[gnu::noreturn]] int (*noreturn_fn_ptr_4)() = &noreturn_fn_3;
Richard Smithd6e7fae2013-01-14 08:57:42 +000055
56struct [[gnu::packed]] packed { char c; int n; };
57static_assert(sizeof(packed) == sizeof(char) + sizeof(int), "not packed");