mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 07:24:25 +00:00
Ack, typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22560 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -331,7 +331,7 @@ void LoopStrengthReduce::AnalyzeGetElementPtrUsers(GetElementPtrInst *GEP,
|
|||||||
/// reducible SCEV, recursively add its users to the IVUsesByStride set and
|
/// reducible SCEV, recursively add its users to the IVUsesByStride set and
|
||||||
/// return true. Otherwise, return false.
|
/// return true. Otherwise, return false.
|
||||||
bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L) {
|
bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L) {
|
||||||
if (I->getType() == Type::VoidTy) return false
|
if (I->getType() == Type::VoidTy) return false;
|
||||||
SCEVHandle ISE = SE->getSCEV(I);
|
SCEVHandle ISE = SE->getSCEV(I);
|
||||||
if (!CanReduceSCEV(ISE, L)) return false;
|
if (!CanReduceSCEV(ISE, L)) return false;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user