Use EBB layout order almost everywhere.

The ebbs_numerically() function was a workaround for the unimplemented EBB layout
order.
This commit is contained in:
Jakob Stoklund Olesen
2016-07-18 18:52:35 -07:00
parent 4ee2ab5042
commit 8c58fe4631
4 changed files with 6 additions and 6 deletions

View File

@@ -1116,7 +1116,7 @@ mod tests {
.unwrap();
assert_eq!(func.name, "ebbs");
let mut ebbs = func.ebbs_numerically();
let mut ebbs = func.layout.ebbs();
let ebb0 = ebbs.next().unwrap();
assert_eq!(func.ebb_args(ebb0).next(), None);