[llvm] r360834 - Fix typo in comment of CSAction -> Action.
Eric Christopher via llvm-commits
llvm-commits at lists.llvm.org
Wed May 15 18:07:54 PDT 2019
Author: echristo
Date: Wed May 15 18:07:54 2019
New Revision: 360834
URL: http://llvm.org/viewvc/llvm-project?rev=360834&view=rev
Log:
Fix typo in comment of CSAction -> Action.
Modified:
llvm/trunk/include/llvm/Passes/PassBuilder.h
Modified: llvm/trunk/include/llvm/Passes/PassBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Passes/PassBuilder.h?rev=360834&r1=360833&r2=360834&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Passes/PassBuilder.h (original)
+++ llvm/trunk/include/llvm/Passes/PassBuilder.h Wed May 15 18:07:54 2019
@@ -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);
}
More information about the llvm-commits
mailing list