diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-29 19:55:15 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-29 19:55:15 +0000 |
commit | ebd486d5932c59266e685f2114d1e2ca781ed163 (patch) | |
tree | 6f6a2c554bf3ddf566aec3b949e3275979c37e04 /tcg | |
parent | e3926838a8c081a99eccc49c77eca5eb02bea950 (diff) | |
download | qemu-ebd486d5932c59266e685f2114d1e2ca781ed163.tar.gz qemu-ebd486d5932c59266e685f2114d1e2ca781ed163.tar.bz2 qemu-ebd486d5932c59266e685f2114d1e2ca781ed163.zip |
Fix alignment of 64bit args
Unbreaks sparc and mips64el. (Reported by Thiemo Seufer)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5815 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -621,8 +621,9 @@ void tcg_gen_callN(TCGContext *s, TCGv_ptr func, unsigned int flags, #endif #ifdef TCG_TARGET_CALL_ALIGN_ARGS /* some targets want aligned 64 bit args */ - if (i & 1) { + if (real_args & 1) { *gen_opparam_ptr++ = TCG_CALL_DUMMY_ARG; + real_args++; } #endif #ifdef TCG_TARGET_WORDS_BIGENDIAN |