Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.cocci (also added braces to satisfy checkpatch)
Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org> --- target/microblaze/op_helper.c | 3 ++- target/microblaze/translate.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/target/microblaze/op_helper.c b/target/microblaze/op_helper.c index 1e07e21c1c..41ab52fb7a 100644 --- a/target/microblaze/op_helper.c +++ b/target/microblaze/op_helper.c @@ -108,8 +108,9 @@ void helper_debug(CPUMBState *env) (env->sregs[SR_MSR] & MSR_IE)); for (i = 0; i < 32; i++) { qemu_log("r%2.2d=%8.8x ", i, env->regs[i]); - if ((i + 1) % 4 == 0) + if (QEMU_IS_ALIGNED(i + 1, 4)) { qemu_log("\n"); + } } qemu_log("\n\n"); } diff --git a/target/microblaze/translate.c b/target/microblaze/translate.c index cb65d1e129..ae7b3c71b0 100644 --- a/target/microblaze/translate.c +++ b/target/microblaze/translate.c @@ -1839,9 +1839,10 @@ void mb_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf, for (i = 0; i < 32; i++) { cpu_fprintf(f, "r%2.2d=%8.8x ", i, env->regs[i]); - if ((i + 1) % 4 == 0) + if (QEMU_IS_ALIGNED(i + 1, 4)) { cpu_fprintf(f, "\n"); } + } cpu_fprintf(f, "\n\n"); } -- 2.13.2