[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / X86 / cmpccxadd-builtins-error.c
blobf7ecf12d0becfa6fa9e71a786ced26d4b06cf8ee
1 // RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown \
2 // RUN: -target-feature +cmpccxadd -fsyntax-only -verify
4 #include <immintrin.h>
6 int test_cmpccxadd32(void *__A, int __B, int __C) {
7 return _cmpccxadd_epi32(__A, __B, __C, 16); // expected-error {{argument value 16 is outside the valid range [0, 15]}}
10 long long test_cmpccxadd64(void *__A, long long __B, long long __C) {
11 return _cmpccxadd_epi64(__A, __B, __C, 16); // expected-error {{argument value 16 is outside the valid range [0, 15]}}
14 long long test_cmpccxadd64_2(int *__A, long long __B, long long __C) {
15 return _cmpccxadd_epi64(__A, __B, __C, 3); // expected-warning {{incompatible pointer types passing 'int *' to parameter of type 'long long *'}}