Index: flang/runtime/format.h =================================================================== --- flang/runtime/format.h +++ flang/runtime/format.h @@ -111,7 +111,9 @@ }; void SkipBlanks() { - while (offset_ < formatLength_ && format_[offset_] == ' ') { + while (offset_ < formatLength_ && + (format_[offset_] == ' ' || format_[offset_] == '\t' || + format_[offset_] == '\v')) { ++offset_; } }