Test Commit NFC. Updated comment

llvm-svn: 327436
This commit is contained in:
Anna Thomas 2018-03-13 19:38:45 +00:00
parent bb45cc126d
commit 5ac72f94f3
1 changed files with 1 additions and 1 deletions

View File

@ -1199,7 +1199,7 @@ bool llvm::promoteLoopAccessesToScalars(
Value *SomePtr = *PointerMustAliases.begin();
BasicBlock *Preheader = CurLoop->getLoopPreheader();
// It isn't safe to promote a load/store from the loop if the load/store is
// It is not safe to promote a load/store from the loop if the load/store is
// conditional. For example, turning:
//
// for () { if (c) *P += 1; }