2010-04-01 11:03:35 +08:00
|
|
|
/*===---- wmmintrin.h - AES intrinsics ------------------------------------===
|
|
|
|
*
|
2019-04-09 04:51:30 +08: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
|
2010-04-01 11:03:35 +08:00
|
|
|
*
|
|
|
|
*===-----------------------------------------------------------------------===
|
|
|
|
*/
|
|
|
|
|
2018-04-25 01:40:47 +08:00
|
|
|
#ifndef __WMMINTRIN_H
|
|
|
|
#define __WMMINTRIN_H
|
2010-04-01 11:03:35 +08:00
|
|
|
|
2012-05-31 13:18:48 +08:00
|
|
|
#include <emmintrin.h>
|
|
|
|
|
2012-11-06 07:30:26 +08:00
|
|
|
#include <__wmmintrin_aes.h>
|
2012-05-31 13:18:48 +08:00
|
|
|
|
2012-11-06 07:30:26 +08:00
|
|
|
#include <__wmmintrin_pclmul.h>
|
2012-05-31 13:18:48 +08:00
|
|
|
|
2018-04-25 01:40:47 +08:00
|
|
|
#endif /* __WMMINTRIN_H */
|