mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-04 11:17:31 +00:00
Fix a crasher when finding the dependency of a call.
llvm-svn: 38510
This commit is contained in:
parent
b11a2f3a32
commit
04b3497eb7
@ -83,7 +83,8 @@ Instruction* MemoryDependenceAnalysis::getCallSiteDependency(CallSite C, bool lo
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
} else
|
||||
continue;
|
||||
|
||||
if (AA.getModRefInfo(C, pointer, pointerSize) != AliasAnalysis::NoModRef) {
|
||||
depGraphLocal.insert(std::make_pair(C.getInstruction(), std::make_pair(QI, true)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user