On Mon, Feb 19, 2024 at 01:33:33PM -0800, Andrew Pinski wrote:
> * gcc.dg/analyzer/torture/vector-extract-1.c: New test.
The testcase fails on i686-linux with
.../gcc/testsuite/gcc.dg/analyzer/torture/vector-extract-1.c:11:1: warning: MMX
vector return without MMX enabled changes the ABI [-Wpsabi]
Added -Wno-psabi to silence the warning.
Tested with
make check-gcc RUNTESTFLAGS='--target_board=unix\{-m32/-march=i686,-m64\}
analyzer-torture.exp=vector-extract-1.c'
and committed to trunk as obvious.
2024-02-20 Jakub Jelinek <[email protected]>
PR analyzer/113983
* gcc.dg/analyzer/torture/vector-extract-1.c: Add -Wno-psabi as
dg-additional-options.
--- gcc/testsuite/gcc.dg/analyzer/torture/vector-extract-1.c.jj 2024-02-20
10:26:02.459258772 +0100
+++ gcc/testsuite/gcc.dg/analyzer/torture/vector-extract-1.c 2024-02-20
10:30:39.157416005 +0100
@@ -1,4 +1,5 @@
/* PR analyzer/113983 */
+/* { dg-additional-options "-Wno-psabi" } */
/* maybe_undo_optimize_bit_field_compare used to ICE on this
because it was not checking for only integer types. */
Jakub