forked from OSchip/llvm-project
reapply this hunk from Bill's reversion in r61169, it is conservative
and safe and orthogonal from turning off load pre. llvm-svn: 61177
This commit is contained in:
parent
7ecf774262
commit
b6372933b5
|
@ -956,6 +956,11 @@ bool GVN::processNonLocalLoad(LoadInst *LI,
|
|||
// it will be too expensive.
|
||||
if (Deps.size() > 100)
|
||||
return false;
|
||||
|
||||
// If we had a phi translation failure, we'll have a single entry which is a
|
||||
// clobber in the current block. Reject this early.
|
||||
if (Deps.size() == 1 && Deps[0].second.isClobber())
|
||||
return false;
|
||||
|
||||
// Filter out useless results (non-locals, etc). Keep track of the blocks
|
||||
// where we have a value available in repl, also keep track of whether we see
|
||||
|
|
Loading…
Reference in New Issue