[OPENMP] Fix spelling of getLoopCounter (NFC)
authorMike Rice <michael.p.rice@intel.com>
Thu, 20 Sep 2018 17:19:41 +0000 (17:19 +0000)
committerMike Rice <michael.p.rice@intel.com>
Thu, 20 Sep 2018 17:19:41 +0000 (17:19 +0000)
llvm-svn: 342666

clang/include/clang/AST/OpenMPClause.h
clang/lib/AST/OpenMPClause.cpp
clang/lib/CodeGen/CGStmtOpenMP.cpp
clang/lib/Serialization/ASTWriter.cpp

index f6e0c85..77118cc 100644 (file)
@@ -990,8 +990,8 @@ public:
   /// Set loop counter for the specified loop.
   void setLoopCounter(unsigned NumLoop, Expr *Counter);
   /// Get loops counter for the specified loop.
-  Expr *getLoopCunter(unsigned NumLoop);
-  const Expr *getLoopCunter(unsigned NumLoop) const;
+  Expr *getLoopCounter(unsigned NumLoop);
+  const Expr *getLoopCounter(unsigned NumLoop) const;
 
   child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); }
 
index 0b8aa88..68550a5 100644 (file)
@@ -222,12 +222,12 @@ void OMPOrderedClause::setLoopCounter(unsigned NumLoop, Expr *Counter) {
   getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop] = Counter;
 }
 
-Expr *OMPOrderedClause::getLoopCunter(unsigned NumLoop) {
+Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) {
   assert(NumLoop < NumberOfLoops && "out of loops number.");
   return getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop];
 }
 
-const Expr *OMPOrderedClause::getLoopCunter(unsigned NumLoop) const {
+const Expr *OMPOrderedClause::getLoopCounter(unsigned NumLoop) const {
   assert(NumLoop < NumberOfLoops && "out of loops number.");
   return getTrailingObjects<Expr *>()[NumberOfLoops + NumLoop];
 }
index 354159a..bbb1535 100644 (file)
@@ -1516,7 +1516,7 @@ void CodeGenFunction::EmitOMPPrivateLoopCounters(
     for (unsigned I = S.getCollapsedNumber(),
                   E = C->getLoopNumIterations().size();
          I < E; ++I) {
-      const auto *DRE = cast<DeclRefExpr>(C->getLoopCunter(I));
+      const auto *DRE = cast<DeclRefExpr>(C->getLoopCounter(I));
       const auto *VD = cast<VarDecl>(DRE->getDecl());
       // Override only those variables that are really emitted already.
       if (LocalDeclMap.count(VD)) {
@@ -4966,7 +4966,7 @@ void CodeGenFunction::EmitSimpleOMPExecutableDirective(
                         E = C->getLoopNumIterations().size();
                I < E; ++I) {
             if (const auto *VD = dyn_cast<OMPCapturedExprDecl>(
-                    cast<DeclRefExpr>(C->getLoopCunter(I))->getDecl())) {
+                    cast<DeclRefExpr>(C->getLoopCounter(I))->getDecl())) {
               // Emit only those that were not explicitly referenced in clauses.
               if (!CGF.LocalDeclMap.count(VD))
                 CGF.EmitVarDecl(*VD);
index 29c3c0b..c68f9ab 100644 (file)
@@ -6555,7 +6555,7 @@ void OMPClauseWriter::VisitOMPOrderedClause(OMPOrderedClause *C) {
   for (Expr *NumIter : C->getLoopNumIterations())
     Record.AddStmt(NumIter);
   for (unsigned I = 0, E = C->getLoopNumIterations().size(); I <E; ++I)
-    Record.AddStmt(C->getLoopCunter(I));
+    Record.AddStmt(C->getLoopCounter(I));
   Record.AddSourceLocation(C->getLParenLoc());
 }