Skip to content

Commit 6f24774

Browse files
committed
[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.
1 parent 4855018 commit 6f24774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4686,7 +4686,7 @@ void PPCDAGToDAGISel::Select(SDNode *N) {
46864686
break;
46874687

46884688
case ISD::INTRINSIC_WO_CHAIN: {
4689-
if (!PPCSubTarget->isISA3_1())
4689+
if (!Subtarget->isISA3_1())
46904690
break;
46914691
unsigned Opcode = 0;
46924692
switch (N->getConstantOperandVal(0)) {

0 commit comments

Comments
 (0)