OSDN Git Service

Fix a crash in the assumption cache when inlining indirect function calls
authorBjorn Steinbrink <bsteinbr@gmail.com>
Thu, 12 Feb 2015 21:04:22 +0000 (21:04 +0000)
committerBjorn Steinbrink <bsteinbr@gmail.com>
Thu, 12 Feb 2015 21:04:22 +0000 (21:04 +0000)
commit53a7b568b258ad1cb93e08ab8c2ce0dd82a0d26a
tree23211a65e0d5829a280866f457bd27962279817e
parent82f991692302f2514e6f12d9fee85aa138f0ee32
Fix a crash in the assumption cache when inlining indirect function calls

Summary:
Instances of the AssumptionCache are per function, so we can't re-use
the same AssumptionCache instance when recursing in the CallAnalyzer to
analyze a different function. Instead we have to pass the
AssumptionCacheTracker to the CallAnalyzer so it can get the right
AssumptionCache on demand.

Reviewers: hfinkel

Subscribers: llvm-commits, hans

Differential Revision: http://reviews.llvm.org/D7533

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228957 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Analysis/IPA/InlineCost.cpp
test/Transforms/Inline/inline-indirect.ll [new file with mode: 0644]