OSDN Git Service

[Analysis] Fix typo in assert. NFC
authorShoaib Meenai <smeenai@fb.com>
Thu, 19 Jul 2018 19:11:29 +0000 (19:11 +0000)
committerShoaib Meenai <smeenai@fb.com>
Thu, 19 Jul 2018 19:11:29 +0000 (19:11 +0000)
Test commit to see if my mailing list woes have been resolved.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@337485 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/MustExecute.cpp

index dabe4b1..fc40498 100644 (file)
@@ -26,7 +26,7 @@ using namespace llvm;
 /// for the possibility of may throw exception.
 ///
 void llvm::computeLoopSafetyInfo(LoopSafetyInfo *SafetyInfo, Loop *CurLoop) {
-  assert(CurLoop != nullptr && "CurLoop cant be null");
+  assert(CurLoop != nullptr && "CurLoop can't be null");
   BasicBlock *Header = CurLoop->getHeader();
   // Setting default safety values.
   SafetyInfo->MayThrow = false;