Skip to content

Commit 77627ea

Browse files
Moves expand_stmt's bt_pop so that it balances correctly.
1 parent 22eb319 commit 77627ea

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/libsyntax/ext/expand.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -761,13 +761,14 @@ fn expand_stmt(stmt: P<Stmt>, fld: &mut MacroExpander) -> SmallVector<P<Stmt>> {
761761
let mut fully_expanded = match maybe_new_items {
762762
Some(stmts) => {
763763
// Keep going, outside-in.
764-
stmts.into_iter().flat_map(|s| {
764+
let new_items = stmts.into_iter().flat_map(|s| {
765765
fld.fold_stmt(s).into_iter()
766-
}).collect()
766+
}).collect();
767+
fld.cx.bt_pop();
768+
new_items
767769
}
768770
None => SmallVector::zero()
769771
};
770-
fld.cx.bt_pop();
771772

772773
// If this is a macro invocation with a semicolon, then apply that
773774
// semicolon to the final statement produced by expansion.

0 commit comments

Comments
 (0)