https://gcc.gnu.org/g:944c3225b38ffb15b6b461e1d881f3a85b00911b
commit r16-3453-g944c3225b38ffb15b6b461e1d881f3a85b00911b Author: Andrew Pinski <andrew.pin...@oss.qualcomm.com> Date: Thu Aug 28 22:25:10 2025 -0700 aarch64/testsuite: Fix vld2-1.c after r16-3201 [PR121713] After r16-3201-gee67004474d521, this testcase started to fail as we can copy prop into arguments now so the number of "after previous" check has doubled. Pushed after a quick check to make sure the testcase is now passing. PR testsuite/121713 gcc/testsuite/ChangeLog: * gcc.target/aarch64/vld2-1.c: Update the number of "after previous" checks. Signed-off-by: Andrew Pinski <andrew.pin...@oss.qualcomm.com> Diff: --- gcc/testsuite/gcc.target/aarch64/vld2-1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.target/aarch64/vld2-1.c b/gcc/testsuite/gcc.target/aarch64/vld2-1.c index 8a267674df17..0a5b97bfb755 100644 --- a/gcc/testsuite/gcc.target/aarch64/vld2-1.c +++ b/gcc/testsuite/gcc.target/aarch64/vld2-1.c @@ -42,4 +42,5 @@ void func3(float32x2x2_t *p, const float *p1, const float *p2) *p = vld2_lane_f32(p2, v, 1); } -/* { dg-final { scan-tree-dump-times "after previous" 3 "forwprop1" } } */ +/* 2 copy props for each function */ +/* { dg-final { scan-tree-dump-times "after previous" 6 "forwprop1" } } */