mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-10 14:12:11 +00:00
Don't try to add stack protector logic to a dead basic block. It messes up
dominator information. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0f41587909
commit
ad7d8a598b
@ -150,9 +150,11 @@ bool StackProtector::InsertStackProtectors() {
|
||||
BasicBlock *FailBBDom = 0; // FailBB's dominator.
|
||||
AllocaInst *AI = 0; // Place on stack that stores the stack guard.
|
||||
Value *StackGuardVar = 0; // The stack guard variable.
|
||||
BasicBlock &Entry = F->getEntryBlock();
|
||||
|
||||
for (Function::iterator I = F->begin(), E = F->end(); I != E; ) {
|
||||
BasicBlock *BB = I++;
|
||||
if (BB->getNumUses() == 0 && BB != &Entry) continue;
|
||||
|
||||
ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator());
|
||||
if (!RI) continue;
|
||||
@ -178,7 +180,6 @@ bool StackProtector::InsertStackProtectors() {
|
||||
StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
|
||||
}
|
||||
|
||||
BasicBlock &Entry = F->getEntryBlock();
|
||||
Instruction *InsPt = &Entry.front();
|
||||
|
||||
AI = new AllocaInst(PtrTy, "StackGuardSlot", InsPt);
|
||||
|
Loading…
Reference in New Issue
Block a user