|
From: <sv...@va...> - 2012-12-27 20:59:57
|
florian 2012-12-27 20:59:43 +0000 (Thu, 27 Dec 2012)
New Revision: 2623
Log:
Indentation only change.
Modified files:
trunk/priv/guest_s390_helpers.c
Modified: trunk/priv/guest_s390_helpers.c (+8 -8)
===================================================================
--- trunk/priv/guest_s390_helpers.c 2012-12-27 20:14:03 +00:00 (rev 2622)
+++ trunk/priv/guest_s390_helpers.c 2012-12-27 20:59:43 +00:00 (rev 2623)
@@ -1141,8 +1141,8 @@
#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 @@
#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 */ \
})
|