]> granicus.if.org Git - clang/commitdiff
[OPENMP]Fix comments/params, NFC.
authorAlexey Bataev <a.bataev@hotmail.com>
Tue, 15 Oct 2019 19:51:30 +0000 (19:51 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Tue, 15 Oct 2019 19:51:30 +0000 (19:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@374943 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/OpenMPClause.h

index 346b3e4a29b3da8ca40160529438f98cdc6f4229..538b2c66510633291410d5e747def7dc75448267 100644 (file)
@@ -534,20 +534,19 @@ class OMPFinalClause : public OMPClause, public OMPClauseWithPreInit {
 public:
   /// Build 'final' clause with condition \a Cond.
   ///
-  /// \param Cond final condition.
+  /// \param Cond Condition of the clause.
   /// \param HelperCond Helper condition for the construct.
   /// \param CaptureRegion Innermost OpenMP region where expressions in this
   /// clause must be captured.
   /// \param StartLoc Starting location of the clause.
   /// \param LParenLoc Location of '('.
-  /// \param Cond Condition of the clause.
   /// \param EndLoc Ending location of the clause.
-  OMPFinalClause(Expr *Cond, Stmt *HelperSize,
+  OMPFinalClause(Expr *Cond, Stmt *HelperCond,
                  OpenMPDirectiveKind CaptureRegion, SourceLocation StartLoc,
                  SourceLocation LParenLoc, SourceLocation EndLoc)
       : OMPClause(OMPC_final, StartLoc, EndLoc), OMPClauseWithPreInit(this),
         LParenLoc(LParenLoc), Condition(Cond) {
-    setPreInitStmt(HelperSize, CaptureRegion);
+    setPreInitStmt(HelperCond, CaptureRegion);
   }
 
   /// Build an empty clause.