In the fueword64(9) wrapper for architectures which do not implemented

native fueword64(9) still, use proper type for local where fuword64()
result is stored.

Note that fueword64() is unused in the tree.

Submitted by:	Chunhui He <hchunhui@mail.ustc.edu.cn>
PR:	212520
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2016-10-23 11:23:17 +00:00
parent d24ac5fb28
commit 55ee7a4c5f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307821

View File

@ -532,7 +532,7 @@ fueword32(volatile const void *base, int32_t *val)
int
fueword64(volatile const void *base, int64_t *val)
{
int32_t res;
int64_t res;
res = fuword64(base);
if (res == -1)