[gardening] Rename references to SILPHIArgument => SILPhiArgument.

This commit is contained in:
Michael Gottesman
2018-09-25 22:18:43 -07:00
parent b505b62434
commit d57a88af0d
65 changed files with 225 additions and 225 deletions

View File

@@ -241,7 +241,7 @@ bool ConditionForwarding::tryOptimize(SwitchEnumInst *SEI) {
SILArgument *NewArg = nullptr;
if (NeedEnumArg.insert(UseBlock).second) {
// The first Enum use in this UseBlock.
NewArg = UseBlock->createPHIArgument(Arg->getType(),
NewArg = UseBlock->createPhiArgument(Arg->getType(),
ValueOwnershipKind::Owned);
} else {
// We already inserted the Enum argument for this UseBlock.