https://gcc.gnu.org/g:5a2319b71e4d3085ff6ddc2d67b62e2f08d583bb
commit r16-5244-g5a2319b71e4d3085ff6ddc2d67b62e2f08d583bb Author: Artemiy Volkov <[email protected]> Date: Thu Nov 13 11:15:19 2025 +0000 gcc/testsuite: adjust tree-ssa/forwprop-43.c Introduced in r16-5042-g470411f44f51d9, this testcase fails on AdvSIMD-less AArch32 configurations, likely as well as on other targets without vector support; thus, require it via dg-require-effective-target. Since this testcase includes stdint.h, require that as well. Regtested on arm-gnueabihf with RUNTESTFLAGS=--target_board=unix/-mfpu=vfpv3-d16/-march=armv7-a. gcc/testsuite/ChangeLog: * gcc.dg/tree-ssa/forwprop-43.c: Adjust. Diff: --- gcc/testsuite/gcc.dg/tree-ssa/forwprop-43.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/testsuite/gcc.dg/tree-ssa/forwprop-43.c b/gcc/testsuite/gcc.dg/tree-ssa/forwprop-43.c index f0f6170648a3..bfda376e1f73 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/forwprop-43.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/forwprop-43.c @@ -1,5 +1,7 @@ /* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-forwprop1" } */ +/* { dg-require-effective-target stdint_types } */ +/* { dg-require-effective-target vect_int } */ /* { dg-additional-options "-fgimple" } */ #include <stdint.h>
