From: Mark Wielaard Date: Thu, 27 Sep 2018 03:09:42 +0000 (+0200) Subject: Fix s390x_dirtyhelper_vec_op signature for non-s390x case. X-Git-Tag: VALGRIND_3_14_0~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28b6496ee4cb5ec9221d9f231e63c1d00cb6a5ea;p=thirdparty%2Fvalgrind.git Fix s390x_dirtyhelper_vec_op signature for non-s390x case. The definition of s390x_dirtyhelper_vec_op in guest_s390_helpers.c didn't match the one from guest_s390_defs.h for the non-s390x case. Causing a compiler warning/error. --- diff --git a/VEX/priv/guest_s390_helpers.c b/VEX/priv/guest_s390_helpers.c index 3aec1f8949..d9773e73e3 100644 --- a/VEX/priv/guest_s390_helpers.c +++ b/VEX/priv/guest_s390_helpers.c @@ -2619,8 +2619,8 @@ s390x_dirtyhelper_vec_op(VexGuestS390XState *guest_state, #else ULong -s390x_dirtyhelper_vec_op(VexGuestS390XState *guest_state, ULong opcode, - ULong v1, ULong v2) +s390x_dirtyhelper_vec_op(VexGuestS390XState *guest_state, + const ULong serialized) { return 0; } #endif