mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-21 09:40:22 +00:00
Correct some typeos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16770 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
91ccc15b45
commit
7c348e1c9f
@ -2636,10 +2636,10 @@ static bool LoadNeedsSignExtend(LoadInst &LI) {
|
||||
if (cByte == getClassB(LI.getType()) && LI.getType()->isSigned()) {
|
||||
bool AllUsesAreStoresOrSetCC = true;
|
||||
for (Value::use_iterator I = LI.use_begin(), E = LI.use_end(); I != E; ++I){
|
||||
if (isa<SetCondInst(*I))
|
||||
if (isa<SetCondInst>(*I))
|
||||
continue;
|
||||
if (StoreInst *SI = dyn_cast<StoreInst>(*I) &&
|
||||
cByte == getClassB(SI->getType()))
|
||||
if (StoreInst *SI = dyn_cast<StoreInst>(*I))
|
||||
if (cByte == getClassB(SI->getType()))
|
||||
continue;
|
||||
AllUsesAreStoresOrSetCC = false;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user