diff options
author | Jay Foad | 2010-02-22 16:53:55 +0100 |
---|---|---|
committer | malc | 2010-02-22 17:38:52 +0100 |
commit | 30c0c76ce0a6915f0049d53d91b6a05c37cdfda7 (patch) | |
tree | 32c02339f089e45d4137d979859aa23410091fab /tcg/hppa | |
parent | PL181 write fix (diff) | |
download | qemu-30c0c76ce0a6915f0049d53d91b6a05c37cdfda7.tar.gz qemu-30c0c76ce0a6915f0049d53d91b6a05c37cdfda7.tar.xz qemu-30c0c76ce0a6915f0049d53d91b6a05c37cdfda7.zip |
tcg: fix build on 32-bit hppa, ppc and sparc hosts
The qemu_ld32s op is only defined if TCG_TARGET_REG_BITS == 64.
Signed-off-by: Jay Foad <jay.foad@gmail.com>
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'tcg/hppa')
-rw-r--r-- | tcg/hppa/tcg-target.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tcg/hppa/tcg-target.c b/tcg/hppa/tcg-target.c index ddce60c81f..4677971e7b 100644 --- a/tcg/hppa/tcg-target.c +++ b/tcg/hppa/tcg-target.c @@ -936,7 +936,6 @@ static const TCGTargetOpDef hppa_op_defs[] = { { INDEX_op_qemu_ld16u, { "r", "L", "L" } }, { INDEX_op_qemu_ld16s, { "r", "L", "L" } }, { INDEX_op_qemu_ld32u, { "r", "L", "L" } }, - { INDEX_op_qemu_ld32s, { "r", "L", "L" } }, { INDEX_op_qemu_ld64, { "r", "r", "L", "L" } }, { INDEX_op_qemu_st8, { "L", "L", "L" } }, |