diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-06 22:37:39 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-06 22:37:39 +0000 |
commit | 76f600b205606a055ec35e7d3fd1a99602329d67 (patch) | |
tree | 87ac4612f76908198ed9aa0d68ae97b1d733614e /include/llvm/Analysis/ScalarEvolutionExpander.h | |
parent | 3147fb2cff9ca0d258f8ab20ff23b9c447024df1 (diff) | |
download | external_llvm-76f600b205606a055ec35e7d3fd1a99602329d67.tar.gz external_llvm-76f600b205606a055ec35e7d3fd1a99602329d67.tar.bz2 external_llvm-76f600b205606a055ec35e7d3fd1a99602329d67.zip |
Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's through the ValueTracking API.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74873 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, 2 insertions, 0 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpander.h b/include/llvm/Analysis/ScalarEvolutionExpander.h index 4ac80d28a4..816d49764d 100644 --- a/include/llvm/Analysis/ScalarEvolutionExpander.h +++ b/include/llvm/Analysis/ScalarEvolutionExpander.h @@ -59,6 +59,8 @@ namespace llvm { } private: + LLVMContext *getContext() const { return SE.getContext(); } + /// InsertBinop - Insert the specified binary operator, doing a small amount /// of work to avoid inserting an obviously redundant operation. Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS); |