1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 #pragma clang attribute pop // expected-error {{'#pragma clang attribute pop' with no matching '#pragma clang attribute push'}}
5 // Don't verify unused attributes.
6 #pragma clang attribute push (__attribute__((annotate)), apply_to = function) // expected-warning {{unused attribute 'annotate' in '#pragma clang attribute push' region}}
7 #pragma clang attribute pop // expected-note {{'#pragma clang attribute push' regions ends here}}
9 // Ensure we only report any errors once.
10 #pragma clang attribute push (__attribute__((annotate)), apply_to = function) // expected-error 4 {{'annotate' attribute takes at least 1 argument}}
12 void test5_begin(void); // expected-note {{when applied to this declaration}}
13 void test5_1(void); // expected-note {{when applied to this declaration}}
15 #pragma clang attribute push (__attribute__((annotate())), apply_to = function) // expected-error 2 {{'annotate' attribute takes at least 1 argument}}
17 void test5_2(void); // expected-note 2 {{when applied to this declaration}}
19 #pragma clang attribute push (__attribute__((annotate("hello", "world"))), apply_to = function)
21 void test5_3(void); // expected-note 2 {{when applied to this declaration}}
23 #pragma clang attribute pop
24 #pragma clang attribute pop
25 #pragma clang attribute pop
27 // Verify that the warnings are reported for each receiver declaration
29 #pragma clang attribute push (__attribute__((optnone)), apply_to = function) // expected-note 2 {{conflicting attribute is here}}
31 __attribute__((always_inline
)) void optnone1(void) { } // expected-warning {{'always_inline' attribute ignored}}
32 // expected-note@-1 {{when applied to this declaration}}
34 void optnone2(void) { }
36 __attribute__((always_inline
)) void optnone3(void) { } // expected-warning {{'always_inline' attribute ignored}}
37 // expected-note@-1 {{when applied to this declaration}}
39 #pragma clang attribute pop
41 #pragma clang attribute push (__attribute__((annotate())), apply_to = function) // expected-error{{'annotate' attribute takes at least 1 argument}}
42 #pragma clang attribute (__attribute__((annotate())), apply_to = function) // expected-error{{'annotate' attribute takes at least 1 argument}}
44 void fun(void); // expected-note 2 {{when applied to this declaration}}
46 #pragma clang attribute pop
47 #pragma clang attribute pop // expected-error{{'#pragma clang attribute pop' with no matching '#pragma clang attribute push'}}
50 #pragma clang attribute push
51 #pragma clang attribute (__attribute__((annotate())), apply_to = function) // expected-error 2 {{'annotate' attribute takes at least 1 argument}}
53 void fun2(void); // expected-note {{when applied to this declaration}}
55 #pragma clang attribute push (__attribute__((annotate())), apply_to = function) // expected-error{{'annotate' attribute takes at least 1 argument}}
56 void fun3(void); // expected-note 2 {{when applied to this declaration}}
57 #pragma clang attribute pop
59 #pragma clang attribute pop
60 #pragma clang attribute pop // expected-error{{'#pragma clang attribute pop' with no matching '#pragma clang attribute push'}}
62 #pragma clang attribute (__attribute__((annotate)), apply_to = function) // expected-error{{'#pragma clang attribute' attribute with no matching '#pragma clang attribute push}}
64 #pragma clang attribute push ([[]], apply_to = function) // A noop
66 #pragma clang attribute pop // expected-error {{'#pragma clang attribute pop' with no matching '#pragma clang attribute push'}}
68 #pragma clang attribute push (__attribute__((annotate("func"))), apply_to = function) // expected-error {{unterminated '#pragma clang attribute push' at end of file}}