brintos

brintos / llvm-project-archived public Read only

0
0
Text · 335 B · 9a38b4c Raw
8 lines · c
1// RUN: %clang_cc1 %s -ffreestanding -triple=i686-unknown-unknown -target-feature +sm3  -fsyntax-only -verify2 3#include <immintrin.h>4 5__m128i test_mm_sm3rnds2_epi32(__m128i __A, __m128i __B, __m128i __C) {6  return _mm_sm3rnds2_epi32(__A, __B, __C, 256); // expected-error {{argument value 256 is outside the valid range [0, 255]}}7}8