mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target-sparc: Fix mixup of uint64 and uint64_t
Commit 793a137a41
(target-sparc:
Implement BMASK/BSHUFFLE.) introduced a stray usage of softfloat uint64
type.
Use uint64_t instead.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
6618f9095c
commit
520c0d8d27
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ uint32_t helper_fpackfix(uint64_t gsr, uint64_t rs2)
|
|||
return ret;
|
||||
}
|
||||
|
||||
uint64 helper_bshuffle(uint64_t gsr, uint64_t src1, uint64_t src2)
|
||||
uint64_t helper_bshuffle(uint64_t gsr, uint64_t src1, uint64_t src2)
|
||||
{
|
||||
union {
|
||||
uint64_t ll[2];
|
||||
|
|
Loading…
Reference in a new issue