forked from OSchip/llvm-project
GVN-hoist: add missing check for all GEP operands available
llvm-svn: 276364
This commit is contained in:
parent
fa522ca3b3
commit
c107a4875e
|
@ -613,6 +613,9 @@ public:
|
|||
|
||||
// Also copy Val when it is a GEP.
|
||||
if (Val && isa<GetElementPtrInst>(Val)) {
|
||||
// Check whether we can compute the GEP at HoistPt.
|
||||
if (!allOperandsAvailable(Val, HoistPt))
|
||||
return false;
|
||||
Instruction *ClonedVal = Val->clone();
|
||||
ClonedVal->insertBefore(HoistPt->getTerminator());
|
||||
// Conservatively discard any optimization hints, they may differ on the
|
||||
|
|
Loading…
Reference in New Issue