https://gcc.gnu.org/g:3bb8cdbd60cdb4dab45b97235dc045d65555b0a1

commit r15-716-g3bb8cdbd60cdb4dab45b97235dc045d65555b0a1
Author: Kewen Lin <li...@linux.ibm.com>
Date:   Mon May 20 21:01:08 2024 -0500

    testsuite, rs6000: Make powerpc_altivec consider current_compiler_flags 
[PR114842]
    
    As noted in PR114842, most of the test cases which require
    effective target check powerpc_altivec_ok actually care
    about if ALTIVEC feature is enabled, and they should adopt
    effective target powerpc_altivec instead.  By considering
    we already have a number of test cases having explicit
    -maltivec in dg-options etc., to keep them still be tested
    as before even without altivec enabled by default, this
    patch makes powerpc_altivec consider current_compiler_flags
    like what we do for powerpc_vsx.
    
            PR testsuite/114842
    
    gcc/testsuite/ChangeLog:
    
            * lib/target-supports.exp (check_effective_target_powerpc_altivec):
            Take current_compiler_flags into account.

Diff:
---
 gcc/testsuite/lib/target-supports.exp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/lib/target-supports.exp 
b/gcc/testsuite/lib/target-supports.exp
index 8689c11214d4..3f0f8532dc36 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -7323,7 +7323,7 @@ proc check_effective_target_sparc_vis { } {
            #else
            int dummy;
            #endif
-       }]
+       } [current_compiler_flags]]
     } else {
        return 0
     }

Reply via email to