Fix a typo in a comment.

This commit is contained in:
Dan Gohman
2017-09-19 14:03:54 -07:00
parent fb827a2d4b
commit 5194298d9b

View File

@@ -157,7 +157,7 @@ impl LoopAnalysis {
layout: &Layout,
) {
let mut stack: Vec<Ebb> = Vec::new();
// We handle each loop header in reverse order, corresponding to a pesudo postorder
// We handle each loop header in reverse order, corresponding to a pseudo postorder
// traversal of the graph.
for lp in self.loops().rev() {
for &(pred, pred_inst) in cfg.get_predecessors(self.loops[lp].header) {