Commit d7d086f0 by Kazu Hirata Committed by Kazu Hirata

tree-flow-inline.h (phi_nodes): Remove an unnecessary check for ENTRY_BLOCK_PTR and EXIT_BLOCK_PTR.

	* tree-flow-inline.h (phi_nodes): Remove an unnecessary check
	for ENTRY_BLOCK_PTR and EXIT_BLOCK_PTR.

From-SVN: r88714
parent 3febde35
2004-10-07 Kazu Hirata <kazu@cs.umass.edu>
* tree-flow-inline.h (phi_nodes): Remove an unnecessary check
for ENTRY_BLOCK_PTR and EXIT_BLOCK_PTR.
2004-10-07 Geoffrey Keating <geoffk@apple.com> 2004-10-07 Geoffrey Keating <geoffk@apple.com>
Radar 3813796 Radar 3813796
......
...@@ -363,8 +363,6 @@ bb_ann (basic_block bb) ...@@ -363,8 +363,6 @@ bb_ann (basic_block bb)
static inline tree static inline tree
phi_nodes (basic_block bb) phi_nodes (basic_block bb)
{ {
if (bb->index < 0)
return NULL;
return bb_ann (bb)->phi_nodes; return bb_ann (bb)->phi_nodes;
} }
......
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