[flang-commits] [PATCH] D125048: [flang][runtime] Fix input of NAN(...) on non-fast path
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Mon May 9 12:38:53 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2f31b4b10a1a: [flang][runtime] Fix input of NAN(...) on non-fast path (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125048/new/
https://reviews.llvm.org/D125048
Files:
flang/runtime/edit-input.cpp
Index: flang/runtime/edit-input.cpp
===================================================================
--- flang/runtime/edit-input.cpp
+++ flang/runtime/edit-input.cpp
@@ -217,17 +217,19 @@
if (next && *next == '(') { // NaN(...)
Put('(');
int depth{1};
- do {
+ while (true) {
next = io.NextInField(remaining, edit);
- if (!next) {
+ if (depth == 0) {
break;
+ } else if (!next) {
+ return 0; // error
} else if (*next == '(') {
++depth;
} else if (*next == ')') {
--depth;
}
Put(*next);
- } while (depth > 0);
+ }
}
exponent = 0;
} else if (first == decimal || (first >= '0' && first <= '9') ||
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125048.428172.patch
Type: text/x-patch
Size: 759 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20220509/49da3efd/attachment.bin>
More information about the flang-commits
mailing list