diff mbox series

[v3,14/50] tcg: add tcg_gen_st_ptr

Message ID 20190614171200.21078-15-alex.bennee@linaro.org
State Superseded
Headers show
Series tcg plugin support | expand

Commit Message

Alex Bennée June 14, 2019, 5:11 p.m. UTC
From: "Emilio G. Cota" <cota@braap.org>


Will gain a user soon.

Signed-off-by: Emilio G. Cota <cota@braap.org>

---
 tcg/tcg-op.h | 5 +++++
 1 file changed, 5 insertions(+)

-- 
2.20.1

Comments

Richard Henderson June 17, 2019, 8:19 p.m. UTC | #1
On 6/14/19 10:11 AM, Alex Bennée wrote:
> From: "Emilio G. Cota" <cota@braap.org>

> 

> Will gain a user soon.

> 

> Signed-off-by: Emilio G. Cota <cota@braap.org>

> ---

>  tcg/tcg-op.h | 5 +++++

>  1 file changed, 5 insertions(+)


Reviewed-by: Richard Henderson <richard.henderson@linaro.org>



r~
diff mbox series

Patch

diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h
index e997346c97..edf12de1f3 100644
--- a/tcg/tcg-op.h
+++ b/tcg/tcg-op.h
@@ -1260,6 +1260,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);