From: Florian Krohm Date: Sun, 12 May 2013 13:57:13 +0000 (+0000) Subject: Fix s390 build failure. X-Git-Tag: svn/VALGRIND_3_9_0^2~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8938e5375650482e4f63edade8dd0b9586a55ac2;p=thirdparty%2Fvalgrind.git Fix s390 build failure. Patch by Maran Pakkirisamy (maranp@linux.vnet.ibm.com). git-svn-id: svn://svn.valgrind.org/vex/trunk@2720 --- diff --git a/VEX/priv/guest_s390_helpers.c b/VEX/priv/guest_s390_helpers.c index 264c321242..cee85c0c9e 100644 --- a/VEX/priv/guest_s390_helpers.c +++ b/VEX/priv/guest_s390_helpers.c @@ -1747,8 +1747,8 @@ s390_calculate_cc(ULong cc_op, ULong cc_dep1, ULong cc_dep2, ULong cc_ndep) "lr 0, %[cc_dep2]\n\t" /* 32 bit register move */ ".short 0x010a\n\t" /* PFPO */ "ipm %[psw]\n\t" : [psw] "=d"(psw) - : [cc_dep1] "1f"(cc_dep1), - [cc_dep2] "d" (cc_dep2) + : [cc_dep1] "f"(cc_dep1), + [cc_dep2] "d"(cc_dep2) : "r0", "r1", "f4"); return psw >> 28; /* cc */ }