Skip to content

Commit

Permalink
Fix spello
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Aug 25, 2017
1 parent 0b364cb commit ef2b21a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/spesh/dump.c
Expand Up @@ -324,7 +324,7 @@ static void dump_bb(MVMThreadContext *tc, DumpStr *ds, MVMSpeshGraph *g, MVMSpes
append(ds, " Successors: ");
for (i = 0; i < bb->num_succ; i++)
appendf(ds, (i == 0 ? "%d" : ", %d"), bb->succ[i]->idx);
append(ds, "\n Predeccessors: ");
append(ds, "\n Predecessors: ");
for (i = 0; i < bb->num_pred; i++)
appendf(ds, (i == 0 ? "%d" : ", %d"), bb->pred[i]->idx);
append(ds, "\n Dominance children: ");
Expand Down
2 changes: 1 addition & 1 deletion tools/graph_spesh.p6
Expand Up @@ -241,7 +241,7 @@ for lines() -> $_ is copy {
@dominance_conns.push($current_bb => $child.Int);
}
}
when / ^ ' ' [ 'Instructions' | 'Predeccessors' ] / { }
when / ^ ' ' [ 'Instructions' | 'Predecessors' ] / { }
when /^ [ 'Facts' | '='+ ] / { }
when /^ 'Spesh of \'' $<methname>=[<[a..z 0..9 _ ' -]>*]
'\' (cuid: ' $<cuid>=[<[a..z A..Z 0..9 _ . -]>+]
Expand Down

0 comments on commit ef2b21a

Please sign in to comment.