26 lines · c
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-exception6 *7 *===-----------------------------------------------------------------------===8 */9 10#ifndef __S390INTRIN_H11#define __S390INTRIN_H12 13#ifndef __s390__14#error "<s390intrin.h> is for s390 only"15#endif16 17#ifdef __HTM__18#include <htmintrin.h>19#endif20 21#ifdef __VEC__22#include <vecintrin.h>23#endif24 25#endif /* __S390INTRIN_H*/26