diff options
author | Duncan Sands <baldrick@free.fr> | 2006-11-29 17:00:07 +0100 |
---|---|---|
committer | Duncan Sands <baldrick@gcc.gnu.org> | 2006-11-29 16:00:07 +0000 |
commit | 32c8bce718ea31691c03b50f026a5b23b59ddeb3 (patch) | |
tree | 79077c165b5fa64d656ddc1ba77c96e3ccb5d22b /gcc/testsuite/gcc.dg/tree-ssa/update-threading.c | |
parent | 7f9faf5e703dcc04ddf7dd8136095f3d1fbbed33 (diff) | |
download | gcc-32c8bce718ea31691c03b50f026a5b23b59ddeb3.zip gcc-32c8bce718ea31691c03b50f026a5b23b59ddeb3.tar.gz gcc-32c8bce718ea31691c03b50f026a5b23b59ddeb3.tar.bz2 |
re PR tree-optimization/23744 (VRP does not merge discontinuous ranges of PHIs)
PR tree-optimization/23744
* tree-vrp.c (vrp_meet): do not require ranges to intersect.
* testsuite/gcc.dg/tree-ssa/pr23744.c: new test.
* testsuite/gcc.dg/tree-ssa/update-threading.c: xfail.
From-SVN: r119320
Diffstat (limited to 'gcc/testsuite/gcc.dg/tree-ssa/update-threading.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/update-threading.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/update-threading.c b/gcc/testsuite/gcc.dg/tree-ssa/update-threading.c index e960d3a..e0e33b6 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/update-threading.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/update-threading.c @@ -20,5 +20,5 @@ main (int argc, char **argv) foo (((A) { ((!(i >> 4) ? 8 : 64 + (i >> 4)) << 8) + (i << 4) } ).a); exit (0); } -/* { dg-final { scan-tree-dump-times "Invalid sum" 0 "optimized"} } */ +/* { dg-final { scan-tree-dump-times "Invalid sum" 0 "optimized" { xfail *-*-* } } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */ |