mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Convert [Cc]an not -> [Cc]annot
This commit is contained in:
@@ -103,7 +103,7 @@ public:
|
||||
MemBehavior visitReleaseValueInst(ReleaseValueInst *BI);
|
||||
|
||||
// Instructions which are none if our SILValue does not alias one of its
|
||||
// arguments. If we can not prove such a thing, return the relevant memory
|
||||
// arguments. If we cannot prove such a thing, return the relevant memory
|
||||
// behavior.
|
||||
#define OPERANDALIAS_MEMBEHAVIOR_INST(Name) \
|
||||
MemBehavior visit##Name(Name *I) { \
|
||||
@@ -176,7 +176,7 @@ MemBehavior MemoryBehaviorVisitor::visitStoreInst(StoreInst *SI) {
|
||||
return MemBehavior::None;
|
||||
|
||||
// If the store dest cannot alias the pointer in question, then the
|
||||
// specified value can not be modified by the store.
|
||||
// specified value cannot be modified by the store.
|
||||
if (AA->isNoAlias(SI->getDest(), V, computeTBAAType(SI->getDest()),
|
||||
getValueTBAAType())) {
|
||||
DEBUG(llvm::dbgs() << " Store Dst does not alias inst. Returning "
|
||||
|
||||
Reference in New Issue
Block a user