150
|
1 /*===---- nmmintrin.h - SSE4 intrinsics ------------------------------------===
|
|
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 __NMMINTRIN_H
|
|
11 #define __NMMINTRIN_H
|
|
12
|
|
13 /* To match expectations of gcc we put the sse4.2 definitions into smmintrin.h,
|
|
14 just include it now then. */
|
|
15 #include <smmintrin.h>
|
|
16 #endif /* __NMMINTRIN_H */
|