mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-14 09:25:25 +00:00
Correct some typeos
llvm-svn: 16770
This commit is contained in:
parent
ff8cbd01e7
commit
38fbf09104
@ -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