mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-11 12:20:15 +01:00
vc4: Fix missing newline for load immediate instruction disasm.
This commit is contained in:
parent
18ebf9e251
commit
8d22e8907f
1 changed files with 4 additions and 4 deletions
|
|
@ -390,7 +390,7 @@ vc4_qpu_disasm(const uint64_t *instructions, int num_instructions)
|
|||
|
||||
switch (sig) {
|
||||
case QPU_SIG_BRANCH:
|
||||
fprintf(stderr, "branch\n");
|
||||
fprintf(stderr, "branch");
|
||||
break;
|
||||
case QPU_SIG_LOAD_IMM:
|
||||
print_load_imm(inst);
|
||||
|
|
@ -401,10 +401,10 @@ vc4_qpu_disasm(const uint64_t *instructions, int num_instructions)
|
|||
print_add_op(inst);
|
||||
fprintf(stderr, " ; ");
|
||||
print_mul_op(inst);
|
||||
|
||||
if (num_instructions != 1)
|
||||
fprintf(stderr, "\n");
|
||||
break;
|
||||
}
|
||||
|
||||
if (num_instructions != 1)
|
||||
fprintf(stderr, "\n");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue