Remove an unneeded block.

This commit is contained in:
Dan Gohman
2017-10-04 12:21:49 -07:00
parent b4e7e918cc
commit fc857a758e

View File

@@ -363,7 +363,6 @@ fn pretty_print_translation(
} }
_ => panic!("wrong content in code section"), _ => panic!("wrong content in code section"),
} }
{
loop { loop {
match parser.read() { match parser.read() {
s @ &ParserState::EndFunctionBody => { s @ &ParserState::EndFunctionBody => {
@@ -375,7 +374,6 @@ fn pretty_print_translation(
} }
}; };
} }
}
let mut function_string = let mut function_string =
format!(" {}", translation.functions[function_index].display(isa)); format!(" {}", translation.functions[function_index].display(isa));
function_string.pop(); function_string.pop();