OSDN Git Service
(root)
/
android-x86
/
external-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e2245b
)
Implement Transforms/TailCallElim/return-undef.ll, a trivial case
author
Chris Lattner
<sabre@nondot.org>
Sat, 5 Nov 2005 08:21:11 +0000
(08:21 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Sat, 5 Nov 2005 08:21:11 +0000
(08:21 +0000)
that has been sitting in my inbox since May 18. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24194
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Transforms/Scalar/TailRecursionElimination.cpp
patch
|
blob
|
history
diff --git
a/lib/Transforms/Scalar/TailRecursionElimination.cpp
b/lib/Transforms/Scalar/TailRecursionElimination.cpp
index
a8c2a3a
..
99c1f10
100644
(file)
--- a/
lib/Transforms/Scalar/TailRecursionElimination.cpp
+++ b/
lib/Transforms/Scalar/TailRecursionElimination.cpp
@@
-342,6
+342,7
@@
bool TailCallElim::ProcessReturningBlock(ReturnInst *Ret, BasicBlock *&OldEntry,
// constant, return the value returned by the tail call, or that are being
// accumulator recursion variable eliminated.
if (Ret->getNumOperands() != 0 && Ret->getReturnValue() != CI &&
+ !isa<UndefValue>(Ret->getReturnValue()) &&
AccumulatorRecursionEliminationInitVal == 0 &&
!getCommonReturnValue(Ret, CI))
return false;