xref: /freebsd/contrib/llvm-project/clang/lib/Headers/nmmintrin.h (revision 349cc55c9796c4596a5b9904cd3281af295f878f)
10b57cec5SDimitry Andric /*===---- nmmintrin.h - SSE4 intrinsics ------------------------------------===
20b57cec5SDimitry Andric  *
30b57cec5SDimitry Andric  * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric  * See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric  * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric  *
70b57cec5SDimitry Andric  *===-----------------------------------------------------------------------===
80b57cec5SDimitry Andric  */
90b57cec5SDimitry Andric 
100b57cec5SDimitry Andric #ifndef __NMMINTRIN_H
110b57cec5SDimitry Andric #define __NMMINTRIN_H
120b57cec5SDimitry Andric 
13*349cc55cSDimitry Andric #if !defined(__i386__) && !defined(__x86_64__)
14*349cc55cSDimitry Andric #error "This header is only meant to be used on x86 and x64 architecture"
15*349cc55cSDimitry Andric #endif
16*349cc55cSDimitry Andric 
170b57cec5SDimitry Andric /* To match expectations of gcc we put the sse4.2 definitions into smmintrin.h,
180b57cec5SDimitry Andric    just include it now then.  */
190b57cec5SDimitry Andric #include <smmintrin.h>
200b57cec5SDimitry Andric #endif /* __NMMINTRIN_H */
21