summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2016-06-15 17:12:29 +0000
committerSanjay Patel <spatel@rotateright.com>2016-06-15 17:12:29 +0000
commit30e0456562bf1f410a7bcf5ed4a4f23f7e027595 (patch)
treed72640ce381aa4dc2615dd3c242de46380281fec /llvm/lib
parent1c549d6ba8648c8dd5160b54eed6e5e3f8e2aaad (diff)
downloadbcm5719-llvm-30e0456562bf1f410a7bcf5ed4a4f23f7e027595.tar.gz
bcm5719-llvm-30e0456562bf1f410a7bcf5ed4a4f23f7e027595.zip
[x86] fix function name; NFC
llvm-svn: 272805
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index a0297f9ab0d..198b48fe9d4 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -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();
OpenPOWER on IntegriCloud