1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Fix typo in comment of CSAction -> Action.

llvm-svn: 360834
This commit is contained in:
Eric Christopher 2019-05-16 01:07:54 +00:00
parent a05660fcc0
commit 4f43643257

View 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);
}