summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/IPO/GlobalOpt.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-07-16 18:04:31 +0000
committerOwen Anderson <resistor@mac.com>2009-07-16 18:04:31 +0000
commit20b34ac794d15256953f5807c4cbe2cbe16ae5e6 (patch)
tree38ac5c7c3e222e1ccb694083c6ddec81ca81b231 /llvm/lib/Transforms/IPO/GlobalOpt.cpp
parentca75db7c02c7c452cde8c8f56c898dff1c1b3e95 (diff)
downloadbcm5719-llvm-20b34ac794d15256953f5807c4cbe2cbe16ae5e6.tar.gz
bcm5719-llvm-20b34ac794d15256953f5807c4cbe2cbe16ae5e6.zip
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/GlobalOpt.cpp')
-rw-r--r--llvm/lib/Transforms/IPO/GlobalOpt.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/IPO/GlobalOpt.cpp b/llvm/lib/Transforms/IPO/GlobalOpt.cpp
index 398f78a0984..8b3cf48ceed 100644
--- a/llvm/lib/Transforms/IPO/GlobalOpt.cpp
+++ b/llvm/lib/Transforms/IPO/GlobalOpt.cpp
@@ -2476,6 +2476,7 @@ bool GlobalOpt::OptimizeGlobalAliases(Module &M) {
bool GlobalOpt::runOnModule(Module &M) {
bool Changed = false;
+ Context = &M.getContext();
// Try to find the llvm.globalctors list.
GlobalVariable *GlobalCtors = FindGlobalCtors(M);
OpenPOWER on IntegriCloud