forked from OSchip/llvm-project
[flang] Removed stray comma in unparse for dist_schedule clause
Original-commit: flang-compiler/f18@0b61bc22c2 Reviewed-on: https://github.com/flang-compiler/f18/pull/772
This commit is contained in:
parent
9aa80d3353
commit
e401082289
|
@ -1892,8 +1892,8 @@ public:
|
|||
Put(")");
|
||||
}
|
||||
void Unparse(const OmpClause::DistSchedule &x) {
|
||||
Word("DIST_SCHEDULE(STATIC,");
|
||||
Walk(x.v);
|
||||
Word("DIST_SCHEDULE(STATIC");
|
||||
Walk(", ", x.v);
|
||||
Put(")");
|
||||
}
|
||||
void Unparse(const OmpClause::Final &x) {
|
||||
|
|
Loading…
Reference in New Issue