2015-12-08 16:51:59 -08:00
|
|
|
/*===---- nmmintrin.h - SSE4 intrinsics ------------------------------------===
|
|
|
|
*
|
2019-07-19 13:50:45 -07:00
|
|
|
* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
* See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-12-08 16:51:59 -08:00
|
|
|
*
|
|
|
|
*===-----------------------------------------------------------------------===
|
|
|
|
*/
|
|
|
|
|
2018-08-04 23:20:05 -07:00
|
|
|
#ifndef __NMMINTRIN_H
|
|
|
|
#define __NMMINTRIN_H
|
2015-12-08 16:51:59 -08:00
|
|
|
|
|
|
|
/* To match expectations of gcc we put the sse4.2 definitions into smmintrin.h,
|
|
|
|
just include it now then. */
|
|
|
|
#include <smmintrin.h>
|
2018-08-04 23:20:05 -07:00
|
|
|
#endif /* __NMMINTRIN_H */
|