[PATCH] D108051: [flang] Add missing call to BeginReadingRecord()
    Peter Klausler via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Tue Aug 17 11:10:35 PDT 2021
    
    
  
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4c15a9700b1f: [flang] Add missing call to BeginReadingRecord() (authored by klausler).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D108051/new/
https://reviews.llvm.org/D108051
Files:
  flang/runtime/namelist.cpp
Index: flang/runtime/namelist.cpp
===================================================================
--- flang/runtime/namelist.cpp
+++ flang/runtime/namelist.cpp
@@ -263,6 +263,7 @@
   auto *listInput{io.get_if<ListDirectedStatementState<Direction::Input>>()};
   RUNTIME_CHECK(handler, listInput != nullptr);
   // Check the group header
+  io.BeginReadingRecord();
   std::optional<char32_t> next{io.GetNextNonBlank()};
   if (!next || *next != '&') {
     handler.SignalError(
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108051.366959.patch
Type: text/x-patch
Size: 482 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210817/0bea254e/attachment.bin>
    
    
More information about the llvm-commits
mailing list