disas: Fix tabs and braces in disas.c
authorRichard Henderson <richard.henderson@linaro.org>
Wed, 10 May 2023 17:04:45 +0000 (18:04 +0100)
committerRichard Henderson <richard.henderson@linaro.org>
Thu, 11 May 2023 08:49:25 +0000 (09:49 +0100)
Fix these before moving the file, for checkpatch.pl.

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230510170812.663149-1-richard.henderson@linaro.org>

disas.c

diff --git a/disas.c b/disas.c
index b087c12c4727e1654001511363774d1316bd6a7e..d46f638a724fe51dfdba57749060a5df424b77d8 100644 (file)
--- a/disas.c
+++ b/disas.c
@@ -226,11 +226,12 @@ void target_disas(FILE *out, CPUState *cpu, target_ulong code,
     }
 
     for (pc = code; size > 0; pc += count, size -= count) {
-       fprintf(out, "0x" TARGET_FMT_lx ":  ", pc);
-       count = s.info.print_insn(pc, &s.info);
-       fprintf(out, "\n");
-       if (count < 0)
-           break;
+        fprintf(out, "0x" TARGET_FMT_lx ":  ", pc);
+        count = s.info.print_insn(pc, &s.info);
+        fprintf(out, "\n");
+        if (count < 0) {
+            break;
+        }
         if (size < count) {
             fprintf(out,
                     "Disassembler disagrees with translator over instruction "