Home | History | Annotate | Download | only in priv

Lines Matching refs:c2

3408 Bool eqIRConst ( IRConst* c1, IRConst* c2 )
3410 if (c1->tag != c2->tag)
3414 case Ico_U1: return toBool( (1 & c1->Ico.U1) == (1 & c2->Ico.U1) );
3415 case Ico_U8: return toBool( c1->Ico.U8 == c2->Ico.U8 );
3416 case Ico_U16: return toBool( c1->Ico.U16 == c2->Ico.U16 );
3417 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 );
3418 case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 );
3419 case Ico_F64: return toBool( c1->Ico.F64 == c2->Ico.F64 );
3420 case Ico_F64i: return toBool( c1->Ico.F64i == c2->Ico.F64i );
3421 case Ico_V128: return toBool( c1->Ico.V128 == c2->Ico.V128 );