diff options
author | Richard Guenther <rguenther@suse.de> | 2012-05-30 12:29:26 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-05-30 12:29:26 +0000 |
commit | e40a96803c2deb2e9b0eb3dbc8fbcea4f3c02a30 (patch) | |
tree | 618c3869f54a501b0026e00d36d8f0bce2a3cb72 /gcc/testsuite/c-c++-common/restrict-2.c | |
parent | 08cad606cd17afa03e68debc31cc6ee532b3f951 (diff) | |
download | gcc-e40a96803c2deb2e9b0eb3dbc8fbcea4f3c02a30.zip gcc-e40a96803c2deb2e9b0eb3dbc8fbcea4f3c02a30.tar.gz gcc-e40a96803c2deb2e9b0eb3dbc8fbcea4f3c02a30.tar.bz2 |
re PR tree-optimization/53501 (scev introduces signed overflow)
2012-05-30 Richard Guenther <rguenther@suse.de>
PR middle-end/53501
* fold-const.c (fold_binary_loc): Make sure to call
fold_plusminus_mult_expr with the original sign of operands.
* gcc.dg/torture/pr53501.c: New testcase.
* c-c++-common/restrict-2.c: Adjust.
From-SVN: r188009
Diffstat (limited to 'gcc/testsuite/c-c++-common/restrict-2.c')
-rw-r--r-- | gcc/testsuite/c-c++-common/restrict-2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/c-c++-common/restrict-2.c b/gcc/testsuite/c-c++-common/restrict-2.c index 3f71b77..42ed398 100644 --- a/gcc/testsuite/c-c++-common/restrict-2.c +++ b/gcc/testsuite/c-c++-common/restrict-2.c @@ -10,5 +10,5 @@ void foo (float * __restrict__ a, float * __restrict__ b, int n, int j) /* We should move the RHS of the store out of the loop. */ -/* { dg-final { scan-tree-dump-times "Moving statement" 11 "lim1" } } */ +/* { dg-final { scan-tree-dump-times "Moving statement" 10 "lim1" } } */ /* { dg-final { cleanup-tree-dump "lim1" } } */ |