blob: 49148dbf3ac61581e4d3015715eee9545481c1d0 [file] [log] [blame]
Logan Chiendf4f7662019-09-04 16:45:23 -07001/*===---- wmmintrin.h - AES 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 __WMMINTRIN_H
11#define __WMMINTRIN_H
12
Pirama Arumuga Nainarec8c89d2022-02-23 09:26:16 -080013#if !defined(__i386__) && !defined(__x86_64__)
14#error "This header is only meant to be used on x86 and x64 architecture"
15#endif
16
Logan Chiendf4f7662019-09-04 16:45:23 -070017#include <emmintrin.h>
18
19#include <__wmmintrin_aes.h>
20
21#include <__wmmintrin_pclmul.h>
22
23#endif /* __WMMINTRIN_H */