mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
LoopVectorize.cpp: Suppress a warning. [-Wunused-variable]
llvm-svn: 169195
This commit is contained in:
parent
350924d8cc
commit
3ba9b62972
@ -1495,9 +1495,9 @@ bool LoopVectorizationLegality::canVectorize() {
|
||||
}
|
||||
|
||||
// We need to have a loop header.
|
||||
BasicBlock *Header = TheLoop->getHeader();
|
||||
BasicBlock *Latch = TheLoop->getLoopLatch();
|
||||
DEBUG(dbgs() << "LV: Found a loop: " << Header->getName() << "\n");
|
||||
DEBUG(dbgs() << "LV: Found a loop: " <<
|
||||
TheLoop->getHeader()->getName() << "\n");
|
||||
|
||||
// ScalarEvolution needs to be able to find the exit count.
|
||||
const SCEV *ExitCount = SE->getExitCount(TheLoop, Latch);
|
||||
|
Loading…
x
Reference in New Issue
Block a user