mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Fix a stupid typo in MemDepPrinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146549 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e08db65c48
commit
e6109828d7
@ -130,7 +130,7 @@ bool MemDepPrinter::runOnFunction(Function &F) {
|
||||
AliasAnalysis::Location Loc = AA.getLocation(LI);
|
||||
MDA.getNonLocalPointerDependency(Loc, true, LI->getParent(), NLDI);
|
||||
} else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
|
||||
if (!LI->isUnordered()) {
|
||||
if (!SI->isUnordered()) {
|
||||
// FIXME: Handle atomic/volatile stores.
|
||||
Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown),
|
||||
static_cast<BasicBlock *>(0)));
|
||||
|
Loading…
Reference in New Issue
Block a user