We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05836e0 commit f4beee5Copy full SHA for f4beee5
flang/lib/Parser/token-sequence.cpp
@@ -30,6 +30,7 @@ void TokenSequence::clear() {
30
31
void TokenSequence::pop_back() {
32
CHECK(!start_.empty());
33
+ // If the last token is empty then `nextStart_ == start_.back()`.
34
CHECK(nextStart_ >= start_.back());
35
std::size_t bytes{nextStart_ - start_.back()};
36
nextStart_ = start_.back();
0 commit comments