Home | History | Annotate | Download | only in priv

Lines Matching refs:imm64

921 static IRExpr* mkSzImm ( IRType ty, ULong imm64 )
924 return ty == Ity_I64 ? mkU64(imm64) : mkU32((UInt)imm64);
928 static IRConst* mkSzConst ( IRType ty, ULong imm64 )
932 IRConst_U64(imm64) :
933 IRConst_U32((UInt)imm64) );