diff options
author | Eric Christopher <echristo@gmail.com> | 2014-10-14 23:58:51 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-10-14 23:58:51 +0000 |
commit | 611f0488ffe64d26917c562d3247ec747aa6599a (patch) | |
tree | 1e4d1c8fc0abd5a8103c214b14924e2589d444c6 /llvm/lib/Transforms | |
parent | 5d26d40fc5ad4417147f5e4bba283ea7811ad664 (diff) | |
download | bcm5719-llvm-611f0488ffe64d26917c562d3247ec747aa6599a.tar.gz bcm5719-llvm-611f0488ffe64d26917c562d3247ec747aa6599a.zip |
No need to cache this unused variable.
Patch by Ehsan Akhgari.
llvm-svn: 219749
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index f3bd96c028c..f117a23b824 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -889,7 +889,7 @@ public: AssumptionTracker *AT, const Function *F, const LoopVectorizeHints *Hints) : TheLoop(L), SE(SE), LI(LI), Legal(Legal), TTI(TTI), DL(DL), TLI(TLI), - AT(AT), TheFunction(F), Hints(Hints) { + TheFunction(F), Hints(Hints) { CodeMetrics::collectEphemeralValues(L, AT, EphValues); } @@ -977,8 +977,6 @@ private: const DataLayout *DL; /// Target Library Info. const TargetLibraryInfo *TLI; - /// Tracker for @llvm.assume. - AssumptionTracker *AT; const Function *TheFunction; // Loop Vectorize Hint. const LoopVectorizeHints *Hints; |