Skip to content

Commit

Permalink
Minor cosmetic fix in instr_print()
Browse files Browse the repository at this point in the history
  • Loading branch information
andoma committed Aug 11, 2018
1 parent e9631dc commit 34b56ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vmir_instr.c
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ instr_print(char **dstp, ir_unit_t *iu, const ir_instr_t *ii, int flags)
case IR_IC_SWITCH:
{
ir_instr_switch_t *s = (ir_instr_switch_t *)ii;
len += addstr(dstp, "switch");
len += addstr(dstp, "switch ");
len += value_print_vt(dstp, iu, s->value);
for(int i = 0; i < s->num_paths; i++)
len += addstrf(dstp, " [#%"PRId64" -> .%d]",
Expand Down

0 comments on commit 34b56ba

Please sign in to comment.