[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:
Sanjay Patel 2016-06-15 17:12:29 +00:00
parent 7f26e26d0c
commit 83a669a70f

View File

@ -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();