diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-21 14:49:09 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-21 14:49:09 +0000 |
commit | a7ec4229125bdaf5cdf5b553c98ceb86c02642f7 (patch) | |
tree | 80561f85d868d69b36ae46e1406e83719bacc483 /target-sparc/op_helper.c | |
parent | 36aa55dcd9775a2164d831d3d3e2a16977995f14 (diff) |
Use the new concat_i32_i64 op for std and stda
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5281 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/op_helper.c')
-rw-r--r-- | target-sparc/op_helper.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index 7bbe0c6f0d..cf15cd342d 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -2281,11 +2281,6 @@ target_ulong helper_sdiv(target_ulong a, target_ulong b) } } -uint64_t helper_pack64(target_ulong high, target_ulong low) -{ - return ((uint64_t)high << 32) | (uint64_t)(low & 0xffffffff); -} - void helper_stdf(target_ulong addr, int mem_idx) { helper_check_align(addr, 7); |