]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Indentation only change.
authorFlorian Krohm <florian@eich-krohm.de>
Thu, 27 Dec 2012 20:59:43 +0000 (20:59 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Thu, 27 Dec 2012 20:59:43 +0000 (20:59 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@2623

VEX/priv/guest_s390_helpers.c

index 0fd647488c28f0ecf8bede8c5c5d08966ca3f072..ee0463a7a6a0dc9438149ec33b502539ffba0d42 100644 (file)
@@ -1141,8 +1141,8 @@ decode_bfp_rounding_mode(UInt irrm)
 
 #define S390_CC_FOR_BFP128_TDC(cc_dep1,cc_dep2,cc_ndep) \
 ({ \
-   /* Recover the original DEP2 value. See comment near s390_cc_thunk_put1f128Z \
-      for rationale. */ \
+   /* Recover the original DEP2 value. See comment near \
+      s390_cc_thunk_put1f128Z for rationale. */ \
    cc_dep2 = cc_dep2 ^ cc_ndep; \
    __asm__ volatile ( \
         "ldr  4,%[high]\n\t" \
@@ -1168,12 +1168,12 @@ decode_bfp_rounding_mode(UInt irrm)
 #define S390_CC_FOR_DFP128_RESULT(hi,lo) \
 ({ \
    __asm__ volatile ( \
-                     "ldr   4,%[high]\n\t"                 \
-                     "ldr   6,%[low]\n\t"                  \
-                     ".insn rre, 0xb3de0000,0,4\n\t"    /* LTXTR */     \
-                     "ipm %[psw]\n\t"           : [psw] "=d"(psw)       \
-                     : [high] "f"(hi), [low] "f"(lo)                    \
-                     : "cc", "f0", "f2", "f4", "f6");                   \
+        "ldr   4,%[high]\n\t"                                           \
+        "ldr   6,%[low]\n\t"                                            \
+        ".insn rre, 0xb3de0000,0,4\n\t"    /* LTXTR */                  \
+        "ipm %[psw]\n\t"           : [psw] "=d"(psw)                    \
+                                   : [high] "f"(hi), [low] "f"(lo)      \
+                                   : "cc", "f0", "f2", "f4", "f6");     \
    psw >> 28;   /* cc */                                                \
 })