From: Eric Christopher Date: Thu, 16 May 2019 01:07:54 +0000 (+0000) Subject: Fix typo in comment of CSAction -> Action. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc2b59f712659109c3493e61c88b1749ed4a2929;p=llvm Fix typo in comment of CSAction -> Action. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@360834 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Passes/PassBuilder.h b/include/llvm/Passes/PassBuilder.h index 1f81181c636..69756dd9b46 100644 --- a/include/llvm/Passes/PassBuilder.h +++ b/include/llvm/Passes/PassBuilder.h @@ -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); }