So in GCC 13, we need to start with dom rather than dom2 for this testcase to work.
Pushed as obvious to the GCC 13 branch. Signed-off-by: Andrew Pinski <[email protected]> gcc/testsuite/ChangeLog: * gcc.dg/torture/pr125774-1.c: Start with dom rather than dom2. --- gcc/testsuite/gcc.dg/torture/pr125774-1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/gcc.dg/torture/pr125774-1.c b/gcc/testsuite/gcc.dg/torture/pr125774-1.c index 00686270d1e..dfe01ecea3b 100644 --- a/gcc/testsuite/gcc.dg/torture/pr125774-1.c +++ b/gcc/testsuite/gcc.dg/torture/pr125774-1.c @@ -4,7 +4,7 @@ /* PR tree-optimization/125774 */ __attribute__((noipa)) -_Bool __GIMPLE (ssa,startwith("dom2")) +_Bool __GIMPLE (ssa,startwith("dom")) f (int a, int b) { _Bool _3; @@ -19,7 +19,7 @@ f (int a, int b) } __attribute__((noipa)) -_Bool __GIMPLE (ssa,startwith("dom2")) +_Bool __GIMPLE (ssa,startwith("dom")) f1 (int a, int b) { _Bool _3; -- 2.43.0
