diff options
author | Richard Henderson <rth@twiddle.net> | 2010-11-22 14:57:55 -0800 |
---|---|---|
committer | Edgar E. Iglesias <edgar@axis.com> | 2010-12-01 19:48:31 +0100 |
commit | b3b0091f07e1c25ba795b3df3ee3c169285f852d (patch) | |
tree | 7d47b6cc78ce655d4a24d53823cd3051b5cd05cd /tcg | |
parent | 255108c0e3c78bc437789a3626e53079ef322a4e (diff) | |
download | qemu-b3b0091f07e1c25ba795b3df3ee3c169285f852d.tar.gz qemu-b3b0091f07e1c25ba795b3df3ee3c169285f852d.tar.bz2 qemu-b3b0091f07e1c25ba795b3df3ee3c169285f852d.zip |
tcg-ia64: Implement qemu_ld32.
The port was not properly merged following
86feb1c860dc38e9c89e787c5210e8191800385e
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Edgar E. Iglesias <edgar@axis.com>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/ia64/tcg-target.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/ia64/tcg-target.c b/tcg/ia64/tcg-target.c index 80c6950b75..62f08044d5 100644 --- a/tcg/ia64/tcg-target.c +++ b/tcg/ia64/tcg-target.c @@ -2124,6 +2124,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, case INDEX_op_qemu_ld16s: tcg_out_qemu_ld(s, args, 1 | 4); break; + case INDEX_op_qemu_ld32: case INDEX_op_qemu_ld32u: tcg_out_qemu_ld(s, args, 2); break; |