21 lines · c
1// RUN: %clang_cc1 -fsyntax-only -ffreestanding %s2// RUN: %clang_cc1 -fsyntax-only -ffreestanding -flax-vector-conversions=none %s3// RUN: %clang_cc1 -fsyntax-only -ffreestanding -x c++ %s4 5// XFAIL: target=arm64ec-pc-windows-msvc6// These intrinsics are not yet implemented for Arm64EC.7 8#include "system_reserved_names.h"9 10#if defined(i386) || defined(__x86_64__)11 12#ifdef __SSE4_2__13// nmmintrin forwards to smmintrin.14#include <nmmintrin.h>15#endif16 17// immintrin includes all other intel intrinsic headers.18#include <immintrin.h>19 20#endif21