mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
don't put erase or query for non-allocainst pointers in an set of allocainsts*'s
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43779 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cf5008a792
commit
6390ae0a4a
@ -271,7 +271,8 @@ bool DSE::handleEndBlock(BasicBlock& BB,
|
||||
// See through pointer-to-pointer bitcasts
|
||||
TranslatePointerBitCasts(pointerOperand);
|
||||
|
||||
if (deadPointers.count(pointerOperand)){
|
||||
if (isa<AllocaInst>(pointerOperand) &&
|
||||
deadPointers.count(cast<AllocaInst>(pointerOperand))) {
|
||||
// Remove it!
|
||||
MD.removeInstruction(S);
|
||||
|
||||
@ -345,7 +346,8 @@ bool DSE::handleEndBlock(BasicBlock& BB,
|
||||
|
||||
for (std::vector<Instruction*>::iterator I = dead.begin(), E = dead.end();
|
||||
I != E; ++I)
|
||||
deadPointers.erase(*I);
|
||||
if (AllocaInst *AI = dyn_cast<AllocaInst>(*I))
|
||||
deadPointers.erase(AI);
|
||||
|
||||
continue;
|
||||
}
|
||||
@ -427,7 +429,8 @@ bool DSE::RemoveUndeadPointers(Value* killPointer,
|
||||
|
||||
for (std::vector<Instruction*>::iterator I = undead.begin(), E = undead.end();
|
||||
I != E; ++I)
|
||||
deadPointers.erase(*I);
|
||||
if (AllocaInst *AI = dyn_cast<AllocaInst>(*I))
|
||||
deadPointers.erase(AI);
|
||||
|
||||
return MadeChange;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user