This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix PR45706 (missing i?86-*-*)


Hi,

I forgot to add i?86-*-* to the targets that now can do some vector 
permutations resulting in mismatches between -m32 and native 32bit 
compilation (and testsuite fails).  I've checked in this obvious patch 
after H.J. confirmed that it doesn't cause further regressions.


Ciao,
Michael.
-- 
testsuite/
	PR testsuite/45706
	* lib/target-supports.exp (check_effective_target_vect_perm):
	Add i?86-*-*.

Index: testsuite/lib/target-supports.exp
===================================================================
--- testsuite/lib/target-supports.exp	(revision 164367)
+++ testsuite/lib/target-supports.exp	(working copy)
@@ -2426,6 +2426,7 @@ proc check_effective_target_vect_perm {
         set et_vect_perm_saved 0
         if { [istarget powerpc*-*-*]
              || [istarget spu-*-*]
+	     || [istarget i?86-*-*]
 	     || [istarget x86_64-*-*] } {
             set et_vect_perm_saved 1
         }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]