20 lines
441 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Support for Vector Instructions
*
2026-01-29 22:25:33 +08:00
* This wrapper header file allows to use the vector instruction macros in
* both assembler files as well as in inline assemblies in C files.
2026-01-21 18:59:54 +08:00
*/
#ifndef __ASM_S390_VX_INSN_H
#define __ASM_S390_VX_INSN_H
2026-01-29 22:25:33 +08:00
#include <asm/vx-insn-asm.h>
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
#ifndef __ASSEMBLY__
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
asm(".include \"asm/vx-insn-asm.h\"\n");
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
#endif /* __ASSEMBLY__ */
2026-01-21 18:59:54 +08:00
#endif /* __ASM_S390_VX_INSN_H */