1*7330f729Sjoerg /*===---- nmmintrin.h - SSE4 intrinsics ------------------------------------=== 2*7330f729Sjoerg * 3*7330f729Sjoerg * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*7330f729Sjoerg * See https://llvm.org/LICENSE.txt for license information. 5*7330f729Sjoerg * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*7330f729Sjoerg * 7*7330f729Sjoerg *===-----------------------------------------------------------------------=== 8*7330f729Sjoerg */ 9*7330f729Sjoerg 10*7330f729Sjoerg #ifndef __NMMINTRIN_H 11*7330f729Sjoerg #define __NMMINTRIN_H 12*7330f729Sjoerg 13*7330f729Sjoerg /* To match expectations of gcc we put the sse4.2 definitions into smmintrin.h, 14*7330f729Sjoerg just include it now then. */ 15*7330f729Sjoerg #include <smmintrin.h> 16*7330f729Sjoerg #endif /* __NMMINTRIN_H */ 17