]> granicus.if.org Git - llvm/commitdiff
Fix typo in comment of CSAction -> Action.
authorEric Christopher <echristo@gmail.com>
Thu, 16 May 2019 01:07:54 +0000 (01:07 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 16 May 2019 01:07:54 +0000 (01:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@360834 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Passes/PassBuilder.h

index 1f81181c636dfbb1dcd080d539117d3f69545f7a..69756dd9b46f63d99ecb0c219595723bb1252316 100644 (file)
@@ -54,7 +54,7 @@ struct PGOOptions {
     // a profile.
     assert(this->CSAction != CSIRUse || this->Action == IRUse);
 
-    // If neither CSAction nor CSAction, SamplePGOSupport needs to be true.
+    // If neither Action nor CSAction, SamplePGOSupport needs to be true.
     assert(this->Action != NoAction || this->CSAction != NoCSAction ||
            this->SamplePGOSupport);
   }