[flang] Remove excess space at end of line.
authorpeter klausler <pklausler@nvidia.com>
Thu, 26 Apr 2018 23:27:07 +0000 (16:27 -0700)
committerpeter klausler <pklausler@nvidia.com>
Thu, 26 Apr 2018 23:27:07 +0000 (16:27 -0700)
Original-commit: flang-compiler/f18@900dc4e254ea680f33382e35eab1fd5b1321ea09
Reviewed-on: https://github.com/flang-compiler/f18/pull/73
Tree-same-pre-rewrite: false

flang/lib/semantics/pass1.cc

index f0914cb..189372e 100644 (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 ; 
   }