Convert [Cc]an not -> [Cc]annot

This commit is contained in:
ken0nek
2015-12-23 00:55:48 +09:00
parent e216169029
commit fcd8fcee91
112 changed files with 264 additions and 264 deletions

View File

@@ -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 "