Re: Minor testsuite fix for cr16 and xstormy16 targets

2021-05-04 Thread Jeff Law via Gcc-patches



On 5/4/2021 2:33 AM, Richard Biener wrote:

On Mon, May 3, 2021 at 6:08 PM Jeff Law via Gcc-patches
 wrote:


Richi's recent work twiddles dse1's actions for these targets. This
patch just updates the expected output.  I'll keep an eye on other
targets as their results trickle in.


Committed to the trunk,

Thanks - the same case apparently also happens for
x86_64 with -m32, I'll adjust for that.


Thanks.  I've got some more on the embedded side to commit/push.


Jeff



Re: Minor testsuite fix for cr16 and xstormy16 targets

2021-05-04 Thread Richard Biener via Gcc-patches
On Mon, May 3, 2021 at 6:08 PM Jeff Law via Gcc-patches
 wrote:
>
>
> Richi's recent work twiddles dse1's actions for these targets. This
> patch just updates the expected output.  I'll keep an eye on other
> targets as their results trickle in.
>
>
> Committed to the trunk,

Thanks - the same case apparently also happens for
x86_64 with -m32, I'll adjust for that.

Richard.

>
> Jeff
>


Minor testsuite fix for cr16 and xstormy16 targets

2021-05-03 Thread Jeff Law via Gcc-patches


Richi's recent work twiddles dse1's actions for these targets. This 
patch just updates the expected output.  I'll keep an eye on other 
targets as their results trickle in.



Committed to the trunk,


Jeff

commit 4d8a13cad842e7822fa29d0aa93799033a0f7847
Author: Jeff Law 
Date:   Mon May 3 07:50:22 2021 -0700

Fix test results on cr16 and xstormy16

gcc/testsuite
* gcc.dg/tree-ssa/ssa-dse-26.c: Update expected output for
cr16 and xstormy16 targets

diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-26.c 
b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-26.c
index 271e666f265..1321fec308e 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-26.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-26.c
@@ -31,8 +31,8 @@ constraint_equal (struct constraint a, struct constraint b)
 }
 
 /* Most targets should be using this test.  */
-/* { dg-final { scan-tree-dump-times "Deleted dead store: x = " 1 "dse1" { 
target { ! { tic6x-*-* mmix-knuth-mmixware } } } } } */
-/* { dg-final { scan-tree-dump-times "Deleted dead store: y = " 1 "dse1" { 
target { ! { tic6x-*-* mmix-knuth-mmixware } } } } } */
+/* { dg-final { scan-tree-dump-times "Deleted dead store: x = " 1 "dse1" { 
target { ! { tic6x-*-* mmix-knuth-mmixware cr16*-*-* xstormy16-*-*-* } } } } } 
*/
+/* { dg-final { scan-tree-dump-times "Deleted dead store: y = " 1 "dse1" { 
target { ! { tic6x-*-* mmix-knuth-mmixware cr16*-*-* xstormy16-*-*-* } } } } } 
*/
 
 /* The c6x port generates significantly different gimple which
changes the SRA and DSE decisions.   Verify we remove all
@@ -42,3 +42,6 @@ constraint_equal (struct constraint a, struct constraint b)
 /* { dg-final { scan-tree-dump-times "Deleted dead store: x::. = " 1 "dse1" { 
target mmix-knuth-mmixware } } } */
 /* { dg-final { scan-tree-dump-times "Deleted dead store: y::. = " 1 "dse1" { 
target mmix-knuth-mmixware } } } */
 
+/* And more special cases
+/* { dg-final { scan-tree-dump-times "Deleted dead store: x = " 2 "dse1" { 
target cr16*-*-* xstormy16-*-*-*} } } */
+/* { dg-final { scan-tree-dump-times "Deleted dead store: y = " 2 "dse1" { 
target cr16*-*-* xstormy16-*-*-*} } } */