[flang] Remove excess space at end of line.

Original-commit: flang-compiler/f18@900dc4e254
Reviewed-on: https://github.com/flang-compiler/f18/pull/73
Tree-same-pre-rewrite: false
This commit is contained in:
peter klausler 2018-04-26 16:27:07 -07:00
parent dd57a6e695
commit c3e406eb27
1 changed files with 2 additions and 2 deletions

View File

@ -1738,7 +1738,7 @@ public:
// Specialize from StmtClass::LabelDo to StmtClass::NonLabelDoWhile or
// StmtClass::NonLabelDoConcurrent where applicable
SpecializeDoStmt( sema.stmt_index , std::get<std::optional<LoopControl>>(x.t) );
SpecializeDoStmt( sema.stmt_index , std::get<std::optional<LoopControl>>(x.t) );
return true ;
}
@ -1774,7 +1774,7 @@ public:
// Specialize from StmtClass::LabelDo to StmtClass::LabelDoWhile or
// StmtClass::LabelDoConcurrent where applicable
SpecializeDoStmt( sema.stmt_index , std::get<std::optional<LoopControl>>(x.t) );
SpecializeDoStmt( sema.stmt_index , std::get<std::optional<LoopControl>>(x.t) );
return true ;
}