mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 02:32:08 +00:00
fix pasto that broke bootstrap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93105 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9e390ddf91
commit
6091e0289b
@ -623,7 +623,7 @@ static bool CanEvaluateZExtd(Value *V, const Type *Ty, const TargetData *TD) {
|
||||
PHINode *PN = cast<PHINode>(I);
|
||||
if (!CanEvaluateZExtd(PN->getIncomingValue(0), Ty, TD)) return false;
|
||||
for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i)
|
||||
if (!CanEvaluateZExtd(PN->getIncomingValue(0), Ty, TD)) return false;
|
||||
if (!CanEvaluateZExtd(PN->getIncomingValue(i), Ty, TD)) return false;
|
||||
return true;
|
||||
}
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user