mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
rename some variables for consistency
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60644 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fbc72e3e61
commit
106c6ca7b0
@ -118,14 +118,14 @@ getDependencyFrom(Instruction *QueryInst, BasicBlock::iterator ScanIt,
|
|||||||
Value *MemPtr = 0;
|
Value *MemPtr = 0;
|
||||||
uint64_t MemSize = 0;
|
uint64_t MemSize = 0;
|
||||||
|
|
||||||
if (StoreInst *S = dyn_cast<StoreInst>(QueryInst)) {
|
if (StoreInst *SI = dyn_cast<StoreInst>(QueryInst)) {
|
||||||
// If this is a volatile store, don't mess around with it. Just return the
|
// If this is a volatile store, don't mess around with it. Just return the
|
||||||
// previous instruction as a clobber.
|
// previous instruction as a clobber.
|
||||||
if (S->isVolatile())
|
if (SI->isVolatile())
|
||||||
return MemDepResult::getClobber(--ScanIt);
|
return MemDepResult::getClobber(--ScanIt);
|
||||||
|
|
||||||
MemPtr = S->getPointerOperand();
|
MemPtr = SI->getPointerOperand();
|
||||||
MemSize = TD->getTypeStoreSize(S->getOperand(0)->getType());
|
MemSize = TD->getTypeStoreSize(SI->getOperand(0)->getType());
|
||||||
} else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
|
} else if (LoadInst *LI = dyn_cast<LoadInst>(QueryInst)) {
|
||||||
// If this is a volatile load, don't mess around with it. Just return the
|
// If this is a volatile load, don't mess around with it. Just return the
|
||||||
// previous instruction as a clobber.
|
// previous instruction as a clobber.
|
||||||
@ -134,8 +134,8 @@ getDependencyFrom(Instruction *QueryInst, BasicBlock::iterator ScanIt,
|
|||||||
|
|
||||||
MemPtr = LI->getPointerOperand();
|
MemPtr = LI->getPointerOperand();
|
||||||
MemSize = TD->getTypeStoreSize(LI->getType());
|
MemSize = TD->getTypeStoreSize(LI->getType());
|
||||||
} else if (FreeInst* F = dyn_cast<FreeInst>(QueryInst)) {
|
} else if (FreeInst *FI = dyn_cast<FreeInst>(QueryInst)) {
|
||||||
MemPtr = F->getPointerOperand();
|
MemPtr = FI->getPointerOperand();
|
||||||
// FreeInsts erase the entire structure, not just a field.
|
// FreeInsts erase the entire structure, not just a field.
|
||||||
MemSize = ~0UL;
|
MemSize = ~0UL;
|
||||||
} else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
|
} else if (isa<CallInst>(QueryInst) || isa<InvokeInst>(QueryInst)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user