]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix s390x_dirtyhelper_vec_op signature for non-s390x case.
authorMark Wielaard <mark@klomp.org>
Thu, 27 Sep 2018 03:09:42 +0000 (05:09 +0200)
committerMark Wielaard <mark@klomp.org>
Thu, 27 Sep 2018 03:10:07 +0000 (05:10 +0200)
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.

VEX/priv/guest_s390_helpers.c

index 3aec1f894922b3f65c4b38f91d4e3b98a6f2dc6c..d9773e73e31f41b97cc49957173784dfd8fee86f 100644 (file)
@@ -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