Skip to content

Commit

Permalink
Fixed benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-mcdaniel committed Sep 16, 2024
1 parent 742232a commit 5369876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/frontend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fn parse_frontend_file(filename: &str) -> Expr {
}

fn compile_frontend_file(filename: &str) -> StandardProgram {
match parse_frontend_file(filename).compile().unwrap() {
match parse_frontend_file(filename).compile(false).unwrap() {
// If we got back a valid program, assemble it and return the result.
Ok(asm_code) => asm_code.assemble(CALL_STACK_SIZE).unwrap().into(),
Err(asm_code) => asm_code.assemble(CALL_STACK_SIZE).unwrap(),
Expand Down

0 comments on commit 5369876

Please sign in to comment.