Home | History | Annotate | Download | only in priv

Lines Matching refs:c2

3863 Bool eqIRConst ( IRConst* c1, IRConst* c2 )
3865 if (c1->tag != c2->tag)
3869 case Ico_U1: return toBool( (1 & c1->Ico.U1) == (1 & c2->Ico.U1) );
3870 case Ico_U8: return toBool( c1->Ico.U8 == c2->Ico.U8 );
3871 case Ico_U16: return toBool( c1->Ico.U16 == c2->Ico.U16 );
3872 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 );
3873 case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 );
3874 case Ico_F32: return toBool( c1->Ico.F32 == c2->Ico.F32 );
3875 case Ico_F32i: return toBool( c1->Ico.F32i == c2->Ico.F32i );
3876 case Ico_F64: return toBool( c1->Ico.F64 == c2->Ico.F64 );
3877 case Ico_F64i: return toBool( c1->Ico.F64i == c2->Ico.F64i );
3878 case Ico_V128: return toBool( c1->Ico.V128 == c2->Ico.V128 );
3879 case Ico_V256: return toBool( c1->Ico.V256 == c2->Ico.V256 );