1283627Sdim/*===---- s390intrin.h - SystemZ intrinsics --------------------------------===
2283627Sdim *
3283627Sdim * Permission is hereby granted, free of charge, to any person obtaining a copy
4283627Sdim * of this software and associated documentation files (the "Software"), to deal
5283627Sdim * in the Software without restriction, including without limitation the rights
6283627Sdim * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7283627Sdim * copies of the Software, and to permit persons to whom the Software is
8283627Sdim * furnished to do so, subject to the following conditions:
9283627Sdim *
10283627Sdim * The above copyright notice and this permission notice shall be included in
11283627Sdim * all copies or substantial portions of the Software.
12283627Sdim *
13283627Sdim * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14283627Sdim * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15283627Sdim * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16283627Sdim * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17283627Sdim * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18283627Sdim * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19283627Sdim * THE SOFTWARE.
20283627Sdim *
21283627Sdim *===-----------------------------------------------------------------------===
22283627Sdim */
23283627Sdim
24283627Sdim#ifndef __S390INTRIN_H
25283627Sdim#define __S390INTRIN_H
26283627Sdim
27283627Sdim#ifndef __s390__
28283627Sdim#error "<s390intrin.h> is for s390 only"
29283627Sdim#endif
30283627Sdim
31283627Sdim#ifdef __HTM__
32283627Sdim#include <htmintrin.h>
33283627Sdim#endif
34283627Sdim
35287521Sdim#ifdef __VEC__
36287521Sdim#include <vecintrin.h>
37287521Sdim#endif
38287521Sdim
39283627Sdim#endif /* __S390INTRIN_H*/
40