aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow-inline.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-10-07 22:24:43 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-10-07 22:24:43 +0000
commitd7d086f0864a2564fef32a819e5381d880310d5e (patch)
treea75133fcf9c77a3efe88cf53dfd27bee23414033 /gcc/tree-flow-inline.h
parent3febde356c3b2393bd6b62058618ed90ed0c1f4e (diff)
downloadgcc-d7d086f0864a2564fef32a819e5381d880310d5e.zip
gcc-d7d086f0864a2564fef32a819e5381d880310d5e.tar.gz
gcc-d7d086f0864a2564fef32a819e5381d880310d5e.tar.bz2
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
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r--gcc/tree-flow-inline.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h
index 61ed112..0507921 100644
--- a/gcc/tree-flow-inline.h
+++ b/gcc/tree-flow-inline.h
@@ -363,8 +363,6 @@ bb_ann (basic_block bb)
static inline tree
phi_nodes (basic_block bb)
{
- if (bb->index < 0)
- return NULL;
return bb_ann (bb)->phi_nodes;
}