diff options
author | Peter Bergner <bergner@linux.ibm.com> | 2024-02-20 13:44:43 -0600 |
---|---|---|
committer | Peter Bergner <bergner@linux.ibm.com> | 2024-02-20 13:45:07 -0600 |
commit | 81e5f276c59897077ffe38202849c93e9c580c41 (patch) | |
tree | 61e50fcba6ef547c20fda266381022a13db0ce83 | |
parent | 61ab046a3277c256867f596e73ce5b5ee9041a9d (diff) | |
download | gcc-81e5f276c59897077ffe38202849c93e9c580c41.zip gcc-81e5f276c59897077ffe38202849c93e9c580c41.tar.gz gcc-81e5f276c59897077ffe38202849c93e9c580c41.tar.bz2 |
rs6000: Update instruction counts due to combine changes [PR112103]
The PR91865 combine fix changed instruction counts slightly for rlwinm-0.c.
Adjust expected instruction counts accordingly.
2024-02-20 Peter Bergner <bergner@linux.ibm.com>
gcc/testsuite/
PR target/112103
* gcc.target/powerpc/rlwinm-0.c: Adjust expected instruction counts.
-rw-r--r-- | gcc/testsuite/gcc.target/powerpc/rlwinm-0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.target/powerpc/rlwinm-0.c b/gcc/testsuite/gcc.target/powerpc/rlwinm-0.c index 4f4fca2..a10d917 100644 --- a/gcc/testsuite/gcc.target/powerpc/rlwinm-0.c +++ b/gcc/testsuite/gcc.target/powerpc/rlwinm-0.c @@ -4,10 +4,10 @@ /* { dg-final { scan-assembler-times {(?n)^\s+[a-z]} 6739 { target ilp32 } } } */ /* { dg-final { scan-assembler-times {(?n)^\s+[a-z]} 9716 { target lp64 } } } */ /* { dg-final { scan-assembler-times {(?n)^\s+blr} 3375 } } */ -/* { dg-final { scan-assembler-times {(?n)^\s+rldicl} 3081 { target lp64 } } } */ +/* { dg-final { scan-assembler-times {(?n)^\s+rldicl} 3090 { target lp64 } } } */ /* { dg-final { scan-assembler-times {(?n)^\s+rlwinm} 3197 { target ilp32 } } } */ -/* { dg-final { scan-assembler-times {(?n)^\s+rlwinm} 3093 { target lp64 } } } */ +/* { dg-final { scan-assembler-times {(?n)^\s+rlwinm} 3084 { target lp64 } } } */ /* { dg-final { scan-assembler-times {(?n)^\s+rotlwi} 154 } } */ /* { dg-final { scan-assembler-times {(?n)^\s+srwi} 13 { target ilp32 } } } */ /* { dg-final { scan-assembler-times {(?n)^\s+srdi} 13 { target lp64 } } } */ |