diff options
Diffstat (limited to 'lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/FastISel.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 24456504cc..253ceca15e 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -57,9 +57,12 @@ using namespace llvm; bool FastISel::hasTrivialKill(const Value *V) const { - // Don't consider constants or arguments to have trivial kills. + // Don't consider constants or arguments to have trivial kills. Only + // instructions with a single use in the same basic block. const Instruction *I = dyn_cast<Instruction>(V); - return I && I->hasOneUse(); + return I && + I->hasOneUse() && + cast<Instruction>(I->use_begin())->getParent() == I->getParent(); } unsigned FastISel::getRegForValue(const Value *V) { |