summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm/Analysis/PHITransAddr.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/include/llvm/Analysis/PHITransAddr.h')
-rw-r--r--llvm/include/llvm/Analysis/PHITransAddr.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/llvm/include/llvm/Analysis/PHITransAddr.h b/llvm/include/llvm/Analysis/PHITransAddr.h
index f0f34f3a51f..997ee478ed2 100644
--- a/llvm/include/llvm/Analysis/PHITransAddr.h
+++ b/llvm/include/llvm/Analysis/PHITransAddr.h
@@ -18,7 +18,6 @@
#include "llvm/IR/Instruction.h"
namespace llvm {
- class AssumptionCache;
class DominatorTree;
class DataLayout;
class TargetLibraryInfo;
@@ -43,15 +42,12 @@ class PHITransAddr {
/// TLI - The target library info if known, otherwise null.
const TargetLibraryInfo *TLI;
- /// A cache of @llvm.assume calls used by SimplifyInstruction.
- AssumptionCache *AC;
-
/// InstInputs - The inputs for our symbolic address.
SmallVector<Instruction*, 4> InstInputs;
public:
- PHITransAddr(Value *addr, const DataLayout &DL, AssumptionCache *AC)
- : Addr(addr), DL(DL), TLI(nullptr), AC(AC) {
+ PHITransAddr(Value *addr, const DataLayout &DL)
+ : Addr(addr), DL(DL), TLI(nullptr) {
// If the address is an instruction, the whole thing is considered an input.
if (Instruction *I = dyn_cast<Instruction>(Addr))
InstInputs.push_back(I);
OpenPOWER on IntegriCloud