diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-01 06:14:40 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-01 06:14:40 +0000 |
commit | fed1769821d234adee6add59bbb97dd1c83ef232 (patch) | |
tree | f2cf22c041a236c0b6a8c34b163e91103660c904 /gcc/tree-ssa-uninit.c | |
parent | 8e21b71a4f55ebda4156b75b62a9380c082ee5d4 (diff) | |
download | gcc-fed1769821d234adee6add59bbb97dd1c83ef232.tar.gz |
2012-06-01 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 188095 using svnmerge
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@188099 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-uninit.c')
-rw-r--r-- | gcc/tree-ssa-uninit.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/tree-ssa-uninit.c b/gcc/tree-ssa-uninit.c index f1ec31527c2..109578fa555 100644 --- a/gcc/tree-ssa-uninit.c +++ b/gcc/tree-ssa-uninit.c @@ -28,7 +28,6 @@ along with GCC; see the file COPYING3. If not see #include "tm_p.h" #include "langhooks.h" #include "basic-block.h" -#include "output.h" #include "function.h" #include "gimple-pretty-print.h" #include "bitmap.h" @@ -1756,7 +1755,7 @@ normalize_preds (VEC(use_pred_info_t, heap) **preds, size_t *n) /* Computes the predicates that guard the use and checks if the incoming paths that have empty (or possibly - empty) defintion can be pruned/filtered. The function returns + empty) definition can be pruned/filtered. The function returns true if it can be determined that the use of PHI's def in USE_STMT is guarded with a predicate set not overlapping with predicate sets of all runtime paths that do not have a definition. @@ -1764,7 +1763,7 @@ normalize_preds (VEC(use_pred_info_t, heap) **preds, size_t *n) the bb of the use (for phi operand use, the bb is not the bb of the phi stmt, but the src bb of the operand edge). UNINIT_OPNDS is a bit vector. If an operand of PHI is uninitialized, the - correponding bit in the vector is 1. VISIED_PHIS is a pointer + corresponding bit in the vector is 1. VISIED_PHIS is a pointer set of phis being visted. */ static bool |