Commit 12a6309e by Zhouyi Zhou Committed by Uros Bizjak

tree-vrp.c (find_conditional_asserts): Remove redundant check that edge does not…

tree-vrp.c (find_conditional_asserts): Remove redundant check that edge does not point to current bb before changing...

        * tree-vrp.c (find_conditional_asserts): Remove redundant check that
        edge does not point to current bb before changing need_assert.

From-SVN: r131333
parent 9ed6c6fa
2008-01-05 Zhouyi Zhou <zhouzhouyi@FreeBSD.org>
* tree-vrp.c (find_conditional_asserts): Remove redundant check that
edge does not point to current bb before changing need_assert.
2008-01-04 Richard Guenther <rguenther@suse.de> 2008-01-04 Richard Guenther <rguenther@suse.de>
PR middle-end/34029 PR middle-end/34029
...@@ -64,8 +69,7 @@ ...@@ -64,8 +69,7 @@
2008-01-03 Jakub Jelinek <jakub@redhat.com> 2008-01-03 Jakub Jelinek <jakub@redhat.com>
PR middle-end/34608 PR middle-end/34608
* omp-low.c (expand_omp_parallel): Purge dead EH edges in the * omp-low.c (expand_omp_parallel): Purge dead EH edges in the child fn.
child fn.
2008-01-02 Richard Sandiford <rsandifo@nildram.co.uk> 2008-01-02 Richard Sandiford <rsandifo@nildram.co.uk>
...@@ -81,14 +85,14 @@ ...@@ -81,14 +85,14 @@
2008-01-02 Arthur Norman <acn1@cam.ac.uk> 2008-01-02 Arthur Norman <acn1@cam.ac.uk>
PR 34013 PR target/34013
* gcc/config/i386/i386.c: (ix86_expand_prologue): Save red-zone * gcc/config/i386/i386.c (ix86_expand_prologue): Save red-zone
while stack probing. while stack probing.
2008-01-01 Douglas Gregor <doug.gregor@gmail.com> 2008-01-01 Douglas Gregor <doug.gregor@gmail.com>
* c-opts.c (sanitize_cpp_opts): Don't warn about "long long" when * c-opts.c (sanitize_cpp_opts): Don't warn about "long long" when
in C++0x mode. in C++0x mode.
2008-01-01 Volker Reichelt <v.reichelt@netcologne.de> 2008-01-01 Volker Reichelt <v.reichelt@netcologne.de>
...@@ -3825,8 +3825,7 @@ find_conditional_asserts (basic_block bb, tree last) ...@@ -3825,8 +3825,7 @@ find_conditional_asserts (basic_block bb, tree last)
/* Traverse the strictly dominated sub-graph rooted at E->DEST /* Traverse the strictly dominated sub-graph rooted at E->DEST
to determine if any of the operands in the conditional to determine if any of the operands in the conditional
predicate are used. */ predicate are used. */
if (e->dest != bb) need_assert |= find_assert_locations (e->dest);
need_assert |= find_assert_locations (e->dest);
/* Register the necessary assertions for each operand in the /* Register the necessary assertions for each operand in the
conditional predicate. */ conditional predicate. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment