summaryrefslogtreecommitdiff
path: root/test/Sema/aarch64-tme-tcancel-errors.c
blob: bd5b7170a9959d5c1bea630d51834e3092afb9d7 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -triple aarch64-eabi -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-eabi -target-feature +tme -verify %s
void t_cancel_range() {
  __builtin_arm_tcancel(0x12345u); // expected-error{{argument value 74565 is outside the valid range [0, 65535]}}
}