[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 09/36] target/ppc: Style fixes for dfp_helper.c
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 09/36] target/ppc: Style fixes for dfp_helper.c |
Date: |
Fri, 26 Apr 2019 16:06:00 +1000 |
Signed-off-by: David Gibson <address@hidden>
Reviewed-by: Cédric Le Goater <address@hidden>
Reviewed-by: Greg Kurz <address@hidden>
---
target/ppc/dfp_helper.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/target/ppc/dfp_helper.c b/target/ppc/dfp_helper.c
index 9164fe701b..f102177572 100644
--- a/target/ppc/dfp_helper.c
+++ b/target/ppc/dfp_helper.c
@@ -1104,19 +1104,19 @@ void helper_##op(CPUPPCState *env, uint64_t *t,
uint64_t *b, uint32_t s) \
} \
} \
\
- while (offset < (size)/4) { \
+ while (offset < (size) / 4) { \
n++; \
- digits[(size)/4-n] = dfp_get_bcd_digit_##size(dfp.b64, offset++); \
- if (digits[(size)/4-n] > 10) { \
+ digits[(size) / 4 - n] = dfp_get_bcd_digit_##size(dfp.b64, offset++); \
+ if (digits[(size) / 4 - n] > 10) { \
dfp_set_FPSCR_flag(&dfp, FP_VX | FP_VXCVI, FPSCR_VE); \
return; \
} else { \
- nonzero |= (digits[(size)/4-n] > 0); \
+ nonzero |= (digits[(size) / 4 - n] > 0); \
} \
} \
\
if (nonzero) { \
- decNumberSetBCD(&dfp.t, digits+((size)/4)-n, n); \
+ decNumberSetBCD(&dfp.t, digits + ((size) / 4) - n, n); \
} \
\
if (s && sgn) { \
@@ -1170,13 +1170,13 @@ DFP_HELPER_XEX(dxexq, 128)
static void dfp_set_raw_exp_64(uint64_t *t, uint64_t raw)
{
*t &= 0x8003ffffffffffffULL;
- *t |= (raw << (63-13));
+ *t |= (raw << (63 - 13));
}
static void dfp_set_raw_exp_128(uint64_t *t, uint64_t raw)
{
t[HI_IDX] &= 0x80003fffffffffffULL;
- t[HI_IDX] |= (raw << (63-17));
+ t[HI_IDX] |= (raw << (63 - 17));
}
#define DFP_HELPER_IEX(op, size) \
--
2.20.1
- [Qemu-ppc] [PULL 00/36] ppc-for-4.1 queue 20190426, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 02/36] hw/ppc/prep: Drop useless inclusion of "hw/input/i8042.h", David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 04/36] spapr/irq: remove spapr_ics_create(), David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 09/36] target/ppc: Style fixes for dfp_helper.c,
David Gibson <=
- [Qemu-ppc] [PULL 18/36] target/ppc: Style fixes for mmu-hash32.[ch], David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 21/36] target/ppc: Style fixes for monitor.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 08/36] target/ppc: Style fixes for fpu_helper.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 07/36] target/ppc: Style fixes for int_helper.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 10/36] target/ppc: Style fixes for excp_helper.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 14/36] target/ppc: Style fixes for machine.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 12/36] target/ppc: Style fixes for helper_regs.h, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 05/36] target/ppc: Style fixes for ppc-models.[ch], David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 11/36] target/ppc: Style fixes for gdbstub.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 06/36] target/ppc: Style fixes for cpu.[ch], David Gibson, 2019/04/26