aboutsummaryrefslogtreecommitdiffstats
path: root/src/viz.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/viz.c')
-rw-r--r--src/viz.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/viz.c b/src/viz.c
index eb5631b..3d6a0f7 100644
--- a/src/viz.c
+++ b/src/viz.c
@@ -309,6 +309,11 @@ viz_instruction(Instruction *inst, LineInfo *line) {
309 viz_operand(inst->src_b); 309 viz_operand(inst->src_b);
310 } 310 }
311 } break; 311 } break;
312 case OP_JMP:
313 case OP_LABEL: {
314 printf(" ");
315 viz_operand(inst->dst);
316 } break;
312 default: { 317 default: {
313 printf(" "); 318 printf(" ");
314 viz_operand(inst->dst); 319 viz_operand(inst->dst);