From 29ff0f25196a9feb5b4516a145075d9aa36dd183 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. llvm-svn: 360834 --- llvm/include/llvm/Passes/PassBuilder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Passes/PassBuilder.h b/llvm/include/llvm/Passes/PassBuilder.h index 1f81181..69756dd 100644 --- a/llvm/include/llvm/Passes/PassBuilder.h +++ b/llvm/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.7.4