Emilio G. Cota <c...@braap.org> writes:
> Will gain a user soon. > > Signed-off-by: Emilio G. Cota <c...@braap.org> Reviewed-by: Alex Bennée <alex.ben...@linaro.org> > --- > tcg/tcg-op.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h > index e2948b10a2..d3c79a6cb2 100644 > --- a/tcg/tcg-op.h > +++ b/tcg/tcg-op.h > @@ -1219,6 +1219,11 @@ static inline void tcg_gen_ld_ptr(TCGv_ptr r, TCGv_ptr > a, intptr_t o) > glue(tcg_gen_ld_,PTR)((NAT)r, a, o); > } > > +static inline void tcg_gen_st_ptr(TCGv_ptr r, TCGv_ptr a, intptr_t o) > +{ > + glue(tcg_gen_st_, PTR)((NAT)r, a, o); > +} > + > static inline void tcg_gen_discard_ptr(TCGv_ptr a) > { > glue(tcg_gen_discard_,PTR)((NAT)a); -- Alex Bennée