mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-24 04:32:09 +00:00
[x86] fix function name; NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272805 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7f26e26d0c
commit
83a669a70f
@ -30413,7 +30413,7 @@ static SDValue combineLockSub(SDNode *N, SelectionDAG &DAG,
|
||||
}
|
||||
|
||||
// TEST (AND a, b) ,(AND a, b) -> TEST a, b
|
||||
static SDValue PerformTESTM(SDNode *N, SelectionDAG &DAG) {
|
||||
static SDValue combineTestM(SDNode *N, SelectionDAG &DAG) {
|
||||
SDValue Op0 = N->getOperand(0);
|
||||
SDValue Op1 = N->getOperand(1);
|
||||
|
||||
@ -30506,7 +30506,7 @@ SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
|
||||
case ISD::MGATHER:
|
||||
case ISD::MSCATTER: return combineGatherScatter(N, DAG);
|
||||
case X86ISD::LSUB: return combineLockSub(N, DAG, Subtarget);
|
||||
case X86ISD::TESTM: return PerformTESTM(N, DAG);
|
||||
case X86ISD::TESTM: return combineTestM(N, DAG);
|
||||
}
|
||||
|
||||
return SDValue();
|
||||
|
Loading…
x
Reference in New Issue
Block a user