diff options
author | Andrew Carlotti <andrew.carlotti@arm.com> | 2024-11-01 17:27:38 +0000 |
---|---|---|
committer | Andrew Carlotti <andrew.carlotti@arm.com> | 2024-11-12 14:58:04 +0000 |
commit | f72f8c34952fe27795fc750e80cb78b97b51fa97 (patch) | |
tree | 1c5e6c2ef5ed3b81b919a403f644e179e3f379eb /gcc | |
parent | 95305c800b1b3263534fdf67b63609772ecbb78d (diff) | |
download | gcc-f72f8c34952fe27795fc750e80cb78b97b51fa97.zip gcc-f72f8c34952fe27795fc750e80cb78b97b51fa97.tar.gz gcc-f72f8c34952fe27795fc750e80cb78b97b51fa97.tar.bz2 |
testsuite: Adjust jump threading test expectation
This test started failing on aarch64 after 0cfc9c95 in 2023 ("Phi
analyzer - Initialize with range instead of a tree.").
The only change visible in the pass dumps prior to thread2 is the upper
bounds of some ranges are reduced from +INF to 7, consistent with the
bitamsk information. After thread2, there are changes in the control
flow, but only affecting edges that are obviously never taken (from
basic blocks 6 through 12). These are cleaned up in the following pass,
but the final codegen remains different.
There isn't anything obviously wrong with the change in dump output, so
let's just update the test expectations (as has happened previously
here).
gcc/testsuite/ChangeLog:
PR tree-optimization/112376
* gcc.dg/tree-ssa/ssa-dom-thread-7.c: Update expectation.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-7.c b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-7.c index 47b8fdf..d84acee 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-7.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-7.c @@ -12,7 +12,7 @@ jump threading opportunities. Skip the later tests on aarch64. */ /* { dg-final { scan-tree-dump-not "Jumps threaded" "dom3" { target { ! aarch64*-*-* } } } } */ /* { dg-final { scan-tree-dump "Jumps threaded: 9" "thread2" { target { ! aarch64*-*-* } } } } */ -/* { dg-final { scan-tree-dump "Jumps threaded: 18" "thread2" { target { aarch64*-*-* } } } } */ +/* { dg-final { scan-tree-dump "Jumps threaded: 17" "thread2" { target { aarch64*-*-* } } } } */ enum STATE { S0=0, |