xref: /freebsd-src/contrib/llvm-project/clang/lib/Headers/zos_wrappers/builtins.h (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1*0fca6ea1SDimitry Andric /*===---- builtins.h - z/Architecture Builtin Functions --------------------===
2*0fca6ea1SDimitry Andric  *
3*0fca6ea1SDimitry Andric  * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*0fca6ea1SDimitry Andric  * See https://llvm.org/LICENSE.txt for license information.
5*0fca6ea1SDimitry Andric  * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*0fca6ea1SDimitry Andric  *
7*0fca6ea1SDimitry Andric  *===-----------------------------------------------------------------------===
8*0fca6ea1SDimitry Andric  */
9*0fca6ea1SDimitry Andric 
10*0fca6ea1SDimitry Andric #ifndef __ZOS_WRAPPERS_BUILTINS_H
11*0fca6ea1SDimitry Andric #define __ZOS_WRAPPERS_BUILTINS_H
12*0fca6ea1SDimitry Andric #if defined(__MVS__)
13*0fca6ea1SDimitry Andric #include_next <builtins.h>
14*0fca6ea1SDimitry Andric #if defined(__VEC__)
15*0fca6ea1SDimitry Andric #include <vecintrin.h>
16*0fca6ea1SDimitry Andric #endif
17*0fca6ea1SDimitry Andric #endif /* defined(__MVS__) */
18*0fca6ea1SDimitry Andric #endif /* __ZOS_WRAPPERS_BUILTINS_H */
19