forked from OSchip/llvm-project
[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:
parent
485501899d
commit
6f24774fc4
|
@ -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)) {
|
||||
|
|
Loading…
Reference in New Issue