xref: /llvm-project/clang/test/Sema/aarch64-tme-tcancel-errors.c (revision 9df71899bd5dbbaf0640c74cc82a6330dc7760cf)
1 // RUN: %clang_cc1 -triple aarch64 -target-feature +tme -verify %s
t_cancel_const(unsigned short u)2 void t_cancel_const(unsigned short u) {
3   __builtin_arm_tcancel(u); // expected-error{{argument to '__builtin_arm_tcancel' must be a constant integer}}
4 }
5 
6 // RUN: %clang_cc1 -triple aarch64 -target-feature +tme -verify %s
t_cancel_range(void)7 void t_cancel_range(void) {
8   __builtin_arm_tcancel(0x12345u); // expected-error{{argument value 74565 is outside the valid range [0, 65535]}}
9 }
10