diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-10 00:49:53 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-10 00:49:53 +0000 |
commit | 45524c58fd5f77b6a3f6e77d43fba85b36ec0b08 (patch) | |
tree | ca745f7d77c20d84dfbefe26f205150d986c806c /include/llvm/Analysis/ScalarEvolutionExpander.h | |
parent | b5619f42f4fdf347380d28357549df09b9ca3946 (diff) |
Finish pushing LLVMContext through the IRBuilder/ConstantFolder interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75213 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/ScalarEvolutionExpander.h')
-rw-r--r-- | include/llvm/Analysis/ScalarEvolutionExpander.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpander.h b/include/llvm/Analysis/ScalarEvolutionExpander.h index a591efd8cc..e3ff5b4690 100644 --- a/include/llvm/Analysis/ScalarEvolutionExpander.h +++ b/include/llvm/Analysis/ScalarEvolutionExpander.h @@ -38,7 +38,7 @@ namespace llvm { public: explicit SCEVExpander(ScalarEvolution &se) : SE(se), Builder(*se.getContext(), - TargetFolder(se.TD, se.getContext())) {} + TargetFolder(se.TD, *se.getContext())) {} /// clear - Erase the contents of the InsertedExpressions map so that users /// trying to expand the same expression into multiple BasicBlocks or |