brintos

brintos / llvm-project-archived public Read only

0
0
Text · 319 B · aa6a084 Raw
9 lines · c
1// RUN: %clang_cc1 %s -ffreestanding -triple=i386-unknown-unknown \2// RUN: -target-feature +cmpccxadd  -fsyntax-only -verify3 4#include <immintrin.h>5 6int test_cmpccxadd32(void *__A, int __B, int __C) {7  return _cmpccxadd_epi32(__A, __B, __C, 0); // expected-error {{call to undeclared function '_cmpccxadd_epi32'}}8}9