[NFC][PowerPC] Change PPCSubTarget (introduced from D87671) to Subtarget

In D87671, it introduced PPCSubTarget in PPCISelDAGToDAG. This should have been
Subtarget instead. This patch changes PPCSubTarget into Subtarget.
This commit is contained in:
Amy Kwan 2020-09-25 12:58:16 -05:00
parent 485501899d
commit 6f24774fc4
1 changed files with 1 additions and 1 deletions

View File

@ -4686,7 +4686,7 @@ void PPCDAGToDAGISel::Select(SDNode *N) {
break;
case ISD::INTRINSIC_WO_CHAIN: {
if (!PPCSubTarget->isISA3_1())
if (!Subtarget->isISA3_1())
break;
unsigned Opcode = 0;
switch (N->getConstantOperandVal(0)) {