diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-13 17:34:19 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-13 17:34:19 +0000 |
commit | e4d5434c3a9c7eacadad431fcd03c277c6d2777d (patch) | |
tree | baea027d041e0bede722014fd81d76f15382b28e /tcg/sparc | |
parent | 30aa5c0d303c334c646e9db1ebadda0c0db8b13f (diff) |
Fix i32 memory backed variables on 64-bit host
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4044 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg/sparc')
-rw-r--r-- | tcg/sparc/tcg-target.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tcg/sparc/tcg-target.c b/tcg/sparc/tcg-target.c index d00aa5a7e6..340ef94a14 100644 --- a/tcg/sparc/tcg-target.c +++ b/tcg/sparc/tcg-target.c @@ -262,13 +262,13 @@ static inline void tcg_out_ldst(TCGContext *s, int ret, int addr, int offset, in fprintf(stderr, "unimplemented %s with offset %d\n", __func__, offset); } -static inline void tcg_out_ld(TCGContext *s, int ret, +static inline void tcg_out_ld(TCGContext *s, TCGType type, int ret, int arg1, tcg_target_long arg2) { fprintf(stderr, "unimplemented %s\n", __func__); } -static inline void tcg_out_st(TCGContext *s, int arg, +static inline void tcg_out_st(TCGContext *s, TCGType type, int arg, int arg1, tcg_target_long arg2) { fprintf(stderr, "unimplemented %s\n", __func__); |