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)
llvm-svn: 360834

llvm/include/llvm/Passes/PassBuilder.h

index 1f81181..69756dd 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);
   }