forked from OSchip/llvm-project
[flang] Fix flang-compiler/f18#765
Original-commit: flang-compiler/f18@bb2ffac717 Reviewed-on: https://github.com/flang-compiler/f18/pull/766
This commit is contained in:
parent
75c912e5ed
commit
6e7ed4fb4d
|
@ -706,7 +706,7 @@ public:
|
|||
Walk("(", std::get<std::optional<ArraySpec>>(x.t), ")");
|
||||
}
|
||||
void Unparse(const CommonStmt::Block &x) {
|
||||
Walk("/", std::get<std::optional<Name>>(x.t), "/");
|
||||
Word("/"), Walk(std::get<std::optional<Name>>(x.t)), Word("/");
|
||||
Walk(std::get<std::list<CommonBlockObject>>(x.t));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue