blob: 365bf81cab2d641aed151120cf49a7121dfffc46 [file] [log] [blame]
// RUN: %clang_cc1 -triple aarch64 -target-feature +tme -verify %s
void t_cancel_const(unsigned short u) {
__builtin_arm_tcancel(u); // expected-error{{argument to '__builtin_arm_tcancel' must be a constant integer}}
}
// RUN: %clang_cc1 -triple aarch64 -target-feature +tme -verify %s
void t_cancel_range(void) {
__builtin_arm_tcancel(0x12345u); // expected-error{{argument value 74565 is outside the valid range [0, 65535]}}
}