mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-11 04:06:20 +00:00
![Richard Smith](/assets/img/avatar_default.png)
levels: -- none: no lax vector conversions [new GCC default] -- integer: only conversions between integer vectors [old GCC default] -- all: all conversions between same-size vectors [Clang default] For now, Clang still defaults to "all" mode, but per my proposal on cfe-dev (2019-04-10) the default will be changed to "integer" as soon as that doesn't break lots of testcases. (Eventually I'd like to change the default to "none" to match GCC and general sanity.) Following GCC's behavior, the driver flag -flax-vector-conversions is translated to -flax-vector-conversions=integer. This reinstates r371805, reverted in r371813, with an additional fix for lldb. llvm-svn: 371817
16 lines
406 B
C
16 lines
406 B
C
// RUN: %clang_cc1 -fsyntax-only -ffreestanding %s
|
|
// RUN: %clang_cc1 -fsyntax-only -ffreestanding -flax-vector-conversions=none %s
|
|
// RUN: %clang_cc1 -fsyntax-only -ffreestanding -x c++ %s
|
|
|
|
#if defined(i386) || defined(__x86_64__)
|
|
|
|
#ifdef __SSE4_2__
|
|
// nmmintrin forwards to smmintrin.
|
|
#include <nmmintrin.h>
|
|
#endif
|
|
|
|
// immintrin includes all other intel intrinsic headers.
|
|
#include <immintrin.h>
|
|
|
|
#endif
|