From bc2b59f712659109c3493e61c88b1749ed4a2929 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 16 May 2019 01:07:54 +0000 Subject: [PATCH] Fix typo in comment of CSAction -> Action. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@360834 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Passes/PassBuilder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.50.1