[llvm-branch-commits] [llvm] 28b00ba - [openacc][openmp][NFC] Fix typo in comments

via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue Dec 22 07:05:05 PST 2020


Author: clementval
Date: 2020-12-22T09:59:50-05:00
New Revision: 28b00ba731160f882f4e60e4a71896d5b878b52d

URL: https://github.com/llvm/llvm-project/commit/28b00ba731160f882f4e60e4a71896d5b878b52d
DIFF: https://github.com/llvm/llvm-project/commit/28b00ba731160f882f4e60e4a71896d5b878b52d.diff

LOG: [openacc][openmp][NFC] Fix typo in comments

Added: 
    

Modified: 
    llvm/utils/TableGen/DirectiveEmitter.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/utils/TableGen/DirectiveEmitter.cpp b/llvm/utils/TableGen/DirectiveEmitter.cpp
index 6dee19389996..9e8aa4d9f74f 100644
--- a/llvm/utils/TableGen/DirectiveEmitter.cpp
+++ b/llvm/utils/TableGen/DirectiveEmitter.cpp
@@ -649,7 +649,7 @@ void GenerateFlangClauseUnparse(const DirectiveLanguage &DirLang,
   }
 }
 
-// Generate the implemenation section for the enumeration in the directive
+// Generate the implementation section for the enumeration in the directive
 // language
 void EmitDirectivesFlangImpl(const DirectiveLanguage &DirLang,
                              raw_ostream &OS) {
@@ -733,7 +733,7 @@ void GenerateClauseClassMacro(const DirectiveLanguage &DirLang,
   OS << "#undef CLAUSE\n";
 }
 
-// Generate the implemenation section for the enumeration in the directive
+// Generate the implementation section for the enumeration in the directive
 // language.
 void EmitDirectivesGen(RecordKeeper &Records, raw_ostream &OS) {
   const auto DirLang = DirectiveLanguage{Records};
@@ -745,7 +745,7 @@ void EmitDirectivesGen(RecordKeeper &Records, raw_ostream &OS) {
   GenerateClauseClassMacro(DirLang, OS);
 }
 
-// Generate the implemenation for the enumeration in the directive
+// Generate the implementation for the enumeration in the directive
 // language. This code can be included in library.
 void EmitDirectivesImpl(RecordKeeper &Records, raw_ostream &OS) {
   const auto DirLang = DirectiveLanguage{Records};


        


More information about the llvm-branch-commits mailing list