mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 23:51:56 +00:00
[flang] Fix list-directed input (repeated nulls and LOGICAL)
Allow repeated nulls in list-directed input (e.g., "4*,") and ignore excess characters in list-directed LOGICAL input after the T or F. Fixes FCVS test fm923.f. Reviewed By: sscalpone Differential Revision: https://reviews.llvm.org/D83810
This commit is contained in:
parent
984e12ab48
commit
8dbc86adf3
@ -337,6 +337,9 @@ bool EditLogicalInput(IoStatementState &io, const DataEdit &edit, bool &x) {
|
||||
}
|
||||
if (remaining) { // ignore the rest of the field
|
||||
io.HandleRelativePosition(*remaining);
|
||||
} else if (edit.descriptor == DataEdit::ListDirected) {
|
||||
while (io.NextInField(remaining)) { // discard rest of field
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -472,6 +472,10 @@ ListDirectedStatementState<Direction::Input>::GetNextDataEdit(
|
||||
edit.descriptor = DataEdit::ListDirectedNullValue;
|
||||
return edit;
|
||||
}
|
||||
char32_t comma{','};
|
||||
if (io.mutableModes().editingFlags & decimalComma) {
|
||||
comma = ';';
|
||||
}
|
||||
if (remaining_ > 0 && !realPart_) { // "r*c" repetition in progress
|
||||
while (connection.currentRecordNumber > initialRecordNumber_) {
|
||||
io.BackspaceRecord();
|
||||
@ -479,6 +483,10 @@ ListDirectedStatementState<Direction::Input>::GetNextDataEdit(
|
||||
connection.HandleAbsolutePosition(initialPositionInRecord_);
|
||||
if (!imaginaryPart_) {
|
||||
edit.repeat = std::min<int>(remaining_, maxRepeat);
|
||||
auto ch{io.GetNextNonBlank()};
|
||||
if (!ch || *ch == ' ' || *ch == comma) { // "r*" repeated null
|
||||
edit.descriptor = DataEdit::ListDirectedNullValue;
|
||||
}
|
||||
}
|
||||
remaining_ -= edit.repeat;
|
||||
return edit;
|
||||
@ -503,10 +511,6 @@ ListDirectedStatementState<Direction::Input>::GetNextDataEdit(
|
||||
edit.descriptor = DataEdit::ListDirectedNullValue;
|
||||
return edit;
|
||||
}
|
||||
char32_t comma{','};
|
||||
if (io.mutableModes().editingFlags & decimalComma) {
|
||||
comma = ';';
|
||||
}
|
||||
bool isFirstItem{isFirstItem_};
|
||||
isFirstItem_ = false;
|
||||
if (*ch == comma) {
|
||||
@ -544,10 +548,14 @@ ListDirectedStatementState<Direction::Input>::GetNextDataEdit(
|
||||
if (r > 0 && ch && *ch == '*') { // subtle: r must be nonzero
|
||||
io.HandleRelativePosition(1);
|
||||
ch = io.GetCurrentChar();
|
||||
if (!ch || *ch == ' ' || *ch == comma || *ch == '/') { // "r*" null
|
||||
if (ch && *ch == '/') { // r*/
|
||||
hitSlash_ = true;
|
||||
edit.descriptor = DataEdit::ListDirectedNullValue;
|
||||
return edit;
|
||||
}
|
||||
if (!ch || *ch == ' ' || *ch == comma) { // "r*" null
|
||||
edit.descriptor = DataEdit::ListDirectedNullValue;
|
||||
}
|
||||
edit.repeat = std::min<int>(r, maxRepeat);
|
||||
remaining_ = r - edit.repeat;
|
||||
initialRecordNumber_ = connection.currentRecordNumber;
|
||||
|
@ -15,7 +15,7 @@ int main() {
|
||||
|
||||
char buffer[4][32];
|
||||
int j{0};
|
||||
for (const char *p : {"1 2 2*3 ,", ",6,,8,123*",
|
||||
for (const char *p : {"1 2 2*3 ,", ",6,,8,1*",
|
||||
"2*'abcdefghijklmnopqrstuvwxyzABC", "DEFGHIJKLMNOPQRSTUVWXYZ'"}) {
|
||||
SetCharacter(buffer[j++], sizeof buffer[0], p);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user