mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Revert r237157, "YAML: Fix typos. NFC".
'Iff' isn't a typo, it's a shorthand for 'if and only if'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237160 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
043da74b89
commit
7fb69bc395
@ -75,7 +75,7 @@ bool Input::setCurrentDocument() {
|
||||
if (DocIterator != Strm->end()) {
|
||||
Node *N = DocIterator->getRoot();
|
||||
if (!N) {
|
||||
assert(Strm->failed() && "Root is NULL if parsing failed");
|
||||
assert(Strm->failed() && "Root is NULL iff parsing failed");
|
||||
EC = make_error_code(errc::invalid_argument);
|
||||
return false;
|
||||
}
|
||||
@ -102,7 +102,7 @@ bool Input::mapTag(StringRef Tag, bool Default) {
|
||||
// If no tag found and 'Tag' is the default, say it was found.
|
||||
return Default;
|
||||
}
|
||||
// Return true if found tag matches supplied tag.
|
||||
// Return true iff found tag matches supplied tag.
|
||||
return Tag.equals(foundTag);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user