gcc/testsuite/ChangeLog: * lib/target-supports.exp: Add LoongArch in check_effective_target_vect_int_mod according to ISA capabilities. --- gcc/testsuite/lib/target-supports.exp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)
diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 17863288ff0..4a84dee430b 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -8586,6 +8586,8 @@ proc check_effective_target_vect_int_mod { } { return [check_cached_effective_target_indexed vect_int_mod { expr { ([istarget powerpc*-*-*] && [check_effective_target_has_arch_pwr10]) + || ([istarget loongarch*-*-*] + && [check_effective_target_loongarch_sx]) || [istarget amdgcn-*-*] }}] } @@ -12663,6 +12665,14 @@ proc check_effective_target_const_volatile_readonly_section { } { return 1 } +proc check_effective_target_loongarch_sx { } { + return [check_no_compiler_messages loongarch_lsx assembly { + #if !defined(__loongarch_sx) + #error "LSX not defined" + #endif + }] +} + proc check_effective_target_loongarch_sx_hw { } { return [check_runtime loongarch_sx_hw { #include <lsxintrin.h> @@ -12675,6 +12685,14 @@ proc check_effective_target_loongarch_sx_hw { } { } "-mlsx"] } +proc check_effective_target_loongarch_asx { } { + return [check_no_compiler_messages loongarch_asx assembly { + #if !defined(__loongarch_asx) + #error "LASX not defined" + #endif + }] +} + proc check_effective_target_loongarch_asx_hw { } { return [check_runtime loongarch_asx_hw { #include <lasxintrin.h> -- 2.36.0