mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 04:39:44 +00:00
remove special handling of bitcast(malloc), it will be handled
when the loop inspects the bitcast operand. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82928 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a9325ff2f
commit
439044f4f9
@ -249,9 +249,6 @@ bool FunctionAttrs::IsFunctionMallocLike(Function *F,
|
||||
switch (RVI->getOpcode()) {
|
||||
// Extend the analysis by looking upwards.
|
||||
case Instruction::BitCast:
|
||||
if (isMalloc(RVI))
|
||||
break;
|
||||
// fall through
|
||||
case Instruction::GetElementPtr:
|
||||
FlowsToReturn.insert(RVI->getOperand(0));
|
||||
continue;
|
||||
@ -259,12 +256,14 @@ bool FunctionAttrs::IsFunctionMallocLike(Function *F,
|
||||
SelectInst *SI = cast<SelectInst>(RVI);
|
||||
FlowsToReturn.insert(SI->getTrueValue());
|
||||
FlowsToReturn.insert(SI->getFalseValue());
|
||||
} continue;
|
||||
continue;
|
||||
}
|
||||
case Instruction::PHI: {
|
||||
PHINode *PN = cast<PHINode>(RVI);
|
||||
for (int i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
|
||||
FlowsToReturn.insert(PN->getIncomingValue(i));
|
||||
} continue;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Check whether the pointer came from an allocation.
|
||||
case Instruction::Alloca:
|
||||
|
Loading…
Reference in New Issue
Block a user