[llvm] r272805 - [x86] fix function name; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 15 10:12:29 PDT 2016


Author: spatel
Date: Wed Jun 15 12:12:29 2016
New Revision: 272805

URL: http://llvm.org/viewvc/llvm-project?rev=272805&view=rev
Log:
[x86] fix function name; NFC

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=272805&r1=272804&r2=272805&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Wed Jun 15 12:12:29 2016
@@ -30413,7 +30413,7 @@ static SDValue combineLockSub(SDNode *N,
 }
 
 // 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::PerformDAGCom
   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();




More information about the llvm-commits mailing list