]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix s390 build failure.
authorFlorian Krohm <florian@eich-krohm.de>
Sun, 12 May 2013 13:57:13 +0000 (13:57 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Sun, 12 May 2013 13:57:13 +0000 (13:57 +0000)
Patch by Maran Pakkirisamy (maranp@linux.vnet.ibm.com).

git-svn-id: svn://svn.valgrind.org/vex/trunk@2720

VEX/priv/guest_s390_helpers.c

index 264c32124244a61af8cade0280f121f45a52defa..cee85c0c9eb21d20fed71bc26a81abc65a26f983 100644 (file)
@@ -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 */
    }