1 /*===---- nmmintrin.h - Implementation of SSE4 intrinsics on PowerPC -------===
2  *
3  * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4  * See https://llvm.org/LICENSE.txt for license information.
5  * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6  *
7  *===-----------------------------------------------------------------------===
8  */
9 
10 #ifndef NO_WARN_X86_INTRINSICS
11 /* This header is distributed to simplify porting x86_64 code that
12    makes explicit use of Intel intrinsics to powerpc64le.
13    It is the user's responsibility to determine if the results are
14    acceptable and make additional changes as necessary.
15    Note that much code that uses Intel intrinsics can be rewritten in
16    standard C or GNU C extensions, which are more portable and better
17    optimized across multiple targets.  */
18 #endif
19 
20 #ifndef NMMINTRIN_H_
21 #define NMMINTRIN_H_
22 
23 /* We just include SSE4.1 header file.  */
24 #include <smmintrin.h>
25 
26 #endif /* NMMINTRIN_H_ */
27