Fixed the layout for the span output.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5276 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
12035b910e
commit
534c630a23
1 changed files with 5 additions and 5 deletions
|
@ -717,11 +717,11 @@ static void PrintSpans (const cc65_spaninfo* S)
|
||||||
for (I = 0, D = S->data; I < S->count; ++I, ++D) {
|
for (I = 0, D = S->data; I < S->count; ++I, ++D) {
|
||||||
PrintId (D->span_id, 7);
|
PrintId (D->span_id, 7);
|
||||||
PrintAddr (D->span_start, 8);
|
PrintAddr (D->span_start, 8);
|
||||||
PrintAddr (D->span_end, 8);
|
PrintAddr (D->span_end, 9);
|
||||||
PrintId (D->segment_id, 7);
|
PrintId (D->segment_id, 7);
|
||||||
PrintId (D->type_id, 7);
|
PrintId (D->type_id, 6);
|
||||||
PrintNumber (D->line_count, 7, 9);
|
PrintNumber (D->line_count, 6, 7);
|
||||||
PrintNumber (D->scope_count, 7, 9);
|
PrintNumber (D->scope_count, 7, 0);
|
||||||
NewLine ();
|
NewLine ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue