Lines Matching refs:c1
3567 Bool eqIRConst ( IRConst* c1, IRConst* c2 )
3569 if (c1->tag != c2->tag)
3572 switch (c1->tag) {
3573 case Ico_U1: return toBool( (1 & c1->Ico.U1) == (1 & c2->Ico.U1) );
3574 case Ico_U8: return toBool( c1->Ico.U8 == c2->Ico.U8 );
3575 case Ico_U16: return toBool( c1->Ico.U16 == c2->Ico.U16 );
3576 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 );
3577 case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 );
3578 case Ico_F32: return toBool( c1->Ico.F32 == c2->Ico.F32 );
3579 case Ico_F32i: return toBool( c1->Ico.F32i == c2->Ico.F32i );
3580 case Ico_F64: return toBool( c1->Ico.F64 == c2->Ico.F64 );
3581 case Ico_F64i: return toBool( c1->Ico.F64i == c2->Ico.F64i );
3582 case Ico_V128: return toBool( c1->Ico.V128 == c2->Ico.V128 );