This is an archive of the discontinued LLVM Phabricator instance.

[Flang] add space between number and character in print
ClosedPublic

Authored by sunshaoce on Mar 10 2023, 12:26 AM.

Details

Summary
print *, "123",456,"789"

before

123 456789

after

123 456 789

Diff Detail

Event Timeline

sunshaoce created this revision.Mar 10 2023, 12:26 AM
Herald added projects: Restricted Project, Restricted Project. · View Herald TranscriptMar 10 2023, 12:26 AM
sunshaoce requested review of this revision.Mar 10 2023, 12:26 AM
klausler accepted this revision.Mar 10 2023, 8:11 AM
klausler added inline comments.
flang/runtime/edit-output.cpp
19

Can be if (auto *list{...}) { ...

This revision is now accepted and ready to land.Mar 10 2023, 8:11 AM
This revision was automatically updated to reflect the committed changes.
sunshaoce marked an inline comment as done.