[all-commits] [llvm/llvm-project] 8cfdc3: [Flang] add space between number and character in ...
Shao-Ce SUN via All-commits
all-commits at lists.llvm.org
Fri Mar 10 09:58:47 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 8cfdc32be553eeb7330f7f7f667daecbfbf098e2
https://github.com/llvm/llvm-project/commit/8cfdc32be553eeb7330f7f7f667daecbfbf098e2
Author: Shao-Ce SUN <sunshaoce at iscas.ac.cn>
Date: 2023-03-11 (Sat, 11 Mar 2023)
Changed paths:
M flang/runtime/edit-output.cpp
Log Message:
-----------
[Flang] add space between number and character in print
```
print *, "123",456,"789"
```
before
```
123 456789
```
after
```
123 456 789
```
Reviewed By: klausler
Differential Revision: https://reviews.llvm.org/D145768
More information about the All-commits
mailing list