Revision a05b5b9b tcg/sparc/tcg-target.c

b/tcg/sparc/tcg-target.c
436 436
}
437 437

  
438 438
static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg ret,
439
                              TCGReg arg1, tcg_target_long arg2)
439
                              TCGReg arg1, intptr_t arg2)
440 440
{
441 441
    tcg_out_ldst(s, ret, arg1, arg2, (type == TCG_TYPE_I32 ? LDUW : LDX));
442 442
}
443 443

  
444 444
static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
445
                              TCGReg arg1, tcg_target_long arg2)
445
                              TCGReg arg1, intptr_t arg2)
446 446
{
447 447
    tcg_out_ldst(s, arg, arg1, arg2, (type == TCG_TYPE_I32 ? STW : STX));
448 448
}

Also available in: Unified diff