diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-11-06 05:59:53 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-11-06 05:59:53 +0000 |
| commit | 8c12bb8cd7e66fa725457ac579eda4bf9d24ceb6 (patch) | |
| tree | 4d67ca7999147c0fe7eed359ded2f3f80f372cca /llvm/lib/Transforms | |
| parent | f4f2ff773be2a11d976b5c7a1f6a15b978c1ff01 (diff) | |
| download | bcm5719-llvm-8c12bb8cd7e66fa725457ac579eda4bf9d24ceb6.tar.gz bcm5719-llvm-8c12bb8cd7e66fa725457ac579eda4bf9d24ceb6.zip | |
remove some more Context arguments.
llvm-svn: 86235
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 2bfa8d54a3b..9d179aea67e 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/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; |

