aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/FunctionAttrs.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-27 21:29:28 +0000
committerChris Lattner <sabre@nondot.org>2009-09-27 21:29:28 +0000
commit439044f4f9594990fb9a8149ea67c119a2b05387 (patch)
tree858d57f2fba9d84a992904339f218bfd9f7d3b33 /lib/Transforms/IPO/FunctionAttrs.cpp
parent2a9325ff2fc21d8c9873b999cb9ebe2bc6b6f1a1 (diff)
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
Diffstat (limited to 'lib/Transforms/IPO/FunctionAttrs.cpp')
-rw-r--r--lib/Transforms/IPO/FunctionAttrs.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Transforms/IPO/FunctionAttrs.cpp b/lib/Transforms/IPO/FunctionAttrs.cpp
index 58cc909a86..7edaa7fbef 100644
--- a/lib/Transforms/IPO/FunctionAttrs.cpp
+++ b/lib/Transforms/IPO/FunctionAttrs.cpp
@@ -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: