1a44c434bSFangrui Song // RUN: %clang_cc1 -triple aarch64 -fsyntax-only -verify %s
2a44c434bSFangrui Song 
3a44c434bSFangrui Song // expected-error@+1 {{'patchable_function_entry' attribute takes at least 1 argument}}
4*8c5edb59SAaron Ballman __attribute__((patchable_function_entry)) void f(void);
5a44c434bSFangrui Song 
6a44c434bSFangrui Song // expected-error@+1 {{'patchable_function_entry' attribute takes no more than 2 arguments}}
7*8c5edb59SAaron Ballman __attribute__((patchable_function_entry(0, 0, 0))) void f(void);
8a44c434bSFangrui Song 
9a44c434bSFangrui Song // expected-error@+1 {{'patchable_function_entry' attribute requires a non-negative integral compile time constant expression}}
10*8c5edb59SAaron Ballman __attribute__((patchable_function_entry(-1))) void f(void);
11a44c434bSFangrui Song 
12a44c434bSFangrui Song int i;
13a44c434bSFangrui Song // expected-error@+1 {{'patchable_function_entry' attribute requires parameter 0 to be an integer constant}}
14*8c5edb59SAaron Ballman __attribute__((patchable_function_entry(i))) void f(void);
15a44c434bSFangrui Song 
1669bf40c4SFangrui Song // expected-error@+1 {{'patchable_function_entry' attribute requires integer constant between 0 and 2 inclusive}}
17*8c5edb59SAaron Ballman __attribute__((patchable_function_entry(2, 3))) void f(void);
18