aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-06 05:59:53 +0000
committerChris Lattner <sabre@nondot.org>2009-11-06 05:59:53 +0000
commit002e65d73c9060d48f73b259ccfcc483352e859a (patch)
tree3c98991c3d4c7a1ba9f95fb1f481ce3cff92e869 /lib
parent6070c017ba421c2862fc0c25d9770169e858c7e3 (diff)
downloadexternal_llvm-002e65d73c9060d48f73b259ccfcc483352e859a.zip
external_llvm-002e65d73c9060d48f73b259ccfcc483352e859a.tar.gz
external_llvm-002e65d73c9060d48f73b259ccfcc483352e859a.tar.bz2
remove some more Context arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86235 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 2bfa8d5..9d179ae 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -13064,7 +13064,7 @@ bool InstCombiner::runOnFunction(Function &F) {
/// Builder - This is an IRBuilder that automatically inserts new
/// instructions into the worklist when they are created.
IRBuilder<true, TargetFolder, InstCombineIRInserter>
- TheBuilder(F.getContext(), TargetFolder(TD, F.getContext()),
+ TheBuilder(F.getContext(), TargetFolder(TD),
InstCombineIRInserter(Worklist));
Builder = &TheBuilder;