mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[Analysis] Fix typo in assert. NFC
Test commit to see if my mailing list woes have been resolved. llvm-svn: 337485
This commit is contained in:
parent
43cfbe3764
commit
a6dbb277de
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user