[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Sema / aarch64-tme-tcancel-errors.c
blob4fcf6817f090228e965712566c563e880dcd12c0
1 // RUN: %clang_cc1 -triple aarch64-eabi -target-feature +tme -verify %s
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}}
6 // RUN: %clang_cc1 -triple aarch64-eabi -target-feature +tme -verify %s
7 void t_cancel_range(void) {
8 __builtin_arm_tcancel(0x12345u); // expected-error{{argument value 74565 is outside the valid range [0, 65535]}}