No need to cache this unused variable.

Patch by Ehsan Akhgari.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219749 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2014-10-14 23:58:51 +00:00
parent cd27f3fb33
commit 2ff93bfec6

View File

@ -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;