diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-16 18:04:31 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-16 18:04:31 +0000 |
commit | 20b34ac794d15256953f5807c4cbe2cbe16ae5e6 (patch) | |
tree | 38ac5c7c3e222e1ccb694083c6ddec81ca81b231 /llvm/lib/Transforms/IPO/PartialInlining.cpp | |
parent | ca75db7c02c7c452cde8c8f56c898dff1c1b3e95 (diff) | |
download | llvm-20b34ac794d15256953f5807c4cbe2cbe16ae5e6.zip llvm-20b34ac794d15256953f5807c4cbe2cbe16ae5e6.tar.gz llvm-20b34ac794d15256953f5807c4cbe2cbe16ae5e6.tar.bz2 |
Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a number of issues in
our current context-passing stuff, which is also fixed here
llvm-svn: 76089
Diffstat (limited to 'llvm/lib/Transforms/IPO/PartialInlining.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/PartialInlining.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/IPO/PartialInlining.cpp b/llvm/lib/Transforms/IPO/PartialInlining.cpp index 73ec9c1..a6e090b 100644 --- a/llvm/lib/Transforms/IPO/PartialInlining.cpp +++ b/llvm/lib/Transforms/IPO/PartialInlining.cpp @@ -141,6 +141,8 @@ Function* PartialInliner::unswitchFunction(Function* F) { } bool PartialInliner::runOnModule(Module& M) { + Context = &M.getContext(); + std::vector<Function*> worklist; worklist.reserve(M.size()); for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) |