diff options
author | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2019-10-21 07:31:45 +0000 |
---|---|---|
committer | Prathamesh Kulkarni <prathamesh3492@gcc.gnu.org> | 2019-10-21 07:31:45 +0000 |
commit | 3669c308b0a6d2a47b5201f0abf1d786c02a2271 (patch) | |
tree | 6d3f3b6416d0bfa1e404e4ec61711cf929fcb5b1 /gcc | |
parent | 63bb8fba4b60296c9200fe3e2aa47c536f99c905 (diff) | |
download | gcc-3669c308b0a6d2a47b5201f0abf1d786c02a2271.zip gcc-3669c308b0a6d2a47b5201f0abf1d786c02a2271.tar.gz gcc-3669c308b0a6d2a47b5201f0abf1d786c02a2271.tar.bz2 |
re PR tree-optimization/91532 ([SVE] Redundant predicated store in gcc.target/aarch64/fmla_2.c)
2019-10-21 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
PR tree-optimization/91532
* gcc.target/aarch64/sve/fmla_2.c: Add dg-scan check for two st1d
insns.
From-SVN: r277237
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/sve/fmla_2.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9199be8..9c33508 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2019-10-21 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> + + PR tree-optimization/91532 + * gcc.target/aarch64/sve/fmla_2.c: Add dg-scan check for two st1d + insns. + 2019-10-20 Georg-Johann Lay <avr@gjlay.de> Fix some fallout for small targets. diff --git a/gcc/testsuite/gcc.target/aarch64/sve/fmla_2.c b/gcc/testsuite/gcc.target/aarch64/sve/fmla_2.c index 5c04bcd..51925fa 100644 --- a/gcc/testsuite/gcc.target/aarch64/sve/fmla_2.c +++ b/gcc/testsuite/gcc.target/aarch64/sve/fmla_2.c @@ -17,3 +17,4 @@ f (double *restrict a, double *restrict b, double *restrict c, /* { dg-final { scan-assembler-times {\tfmla\tz[0-9]+\.d, p[0-7]/m, z[0-9]+\.d, z[0-9]+\.d\n} 2 } } */ /* { dg-final { scan-assembler-not {\tfmad\t} } } */ +/* { dg-final { scan-assembler-times {\tst1d} 2 } } */ |