diff options
author | Riku Voipio <riku.voipio@linaro.org> | 2014-04-22 15:40:50 +0300 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2014-06-17 08:52:08 +0300 |
commit | a42267ef58c4fcc9c9863f37dbe4cdbf887f8a7d (patch) | |
tree | 95d1db025e886902ce80b82afc5feac4cd86cf1e /linux-user/uname.c | |
parent | 9e918dc92723ee50a82d06296b3a14621d9eb52c (diff) |
linux-user: fix gcc-4.9 compiler error on __{get,put]}_user
gcc-4.9 finds unused operand:
linux-user/syscall.c: In function ‘host_to_target_stat64’:
linux-user/qemu.h:301:19: error: right-hand operand of comma expression
has no effect [-Werror=unused-value]
((hptr), (x)), 0)
Just removing the rh operand is no good, it will error in later:
linux-user/main.c: In function ‘arm_kernel_cmpxchg64_helper’:
linux-user/qemu.h:330:15: error: void value not ignored as it ought to be
__ret = __put_user((x), __hptr); \
Thus, remove setting __ret from __get_user and __put_user, as and
set the right hand operand to (void)0 to make it clear that these
return never nothing.
This commit depends on the signal.c cleanup, to ensure bisectable
version history.
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'linux-user/uname.c')
0 files changed, 0 insertions, 0 deletions