1 /*===---- s390intrin.h - SystemZ 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 __S390INTRIN_H
11 #define __S390INTRIN_H
12 
13 #ifndef __s390__
14 #error "<s390intrin.h> is for s390 only"
15 #endif
16 
17 #ifdef __HTM__
18 #include <htmintrin.h>
19 #endif
20 
21 #ifdef __VEC__
22 #include <vecintrin.h>
23 #endif
24 
25 #endif /* __S390INTRIN_H*/
26