@@ -478,16 +478,16 @@ struct TernaryOpc_match {
478
478
479
479
template <typename T0_P, typename T1_P, typename T2_P>
480
480
inline TernaryOpc_match<T0_P, T1_P, T2_P, false , false >
481
- m_SetCC (const T0_P &Op0 , const T1_P &Op1 , const T2_P &Op2 ) {
482
- return TernaryOpc_match<T0_P, T1_P, T2_P, false , false >(ISD::SETCC, Op0, Op1 ,
483
- Op2 );
481
+ m_SetCC (const T0_P &LHS , const T1_P &RHS , const T2_P &CC ) {
482
+ return TernaryOpc_match<T0_P, T1_P, T2_P, false , false >(ISD::SETCC, LHS, RHS ,
483
+ CC );
484
484
}
485
485
486
486
template <typename T0_P, typename T1_P, typename T2_P>
487
487
inline TernaryOpc_match<T0_P, T1_P, T2_P, true , false >
488
- m_c_SetCC (const T0_P &Op0 , const T1_P &Op1 , const T2_P &Op2 ) {
489
- return TernaryOpc_match<T0_P, T1_P, T2_P, true , false >(ISD::SETCC, Op0, Op1 ,
490
- Op2 );
488
+ m_c_SetCC (const T0_P &LHS , const T1_P &RHS , const T2_P &CC ) {
489
+ return TernaryOpc_match<T0_P, T1_P, T2_P, true , false >(ISD::SETCC, LHS, RHS ,
490
+ CC );
491
491
}
492
492
493
493
// === Binary operations ===
0 commit comments