Skip to content

Commit

Permalink
Fix x86-only type error
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed May 30, 2022
1 parent 5840649 commit 6c72453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brilift/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ impl Translator<JITModule> {
// The normal way to set up a JIT builder.
#[cfg(not(target_arch = "aarch64"))]
fn jit_builder() -> JITBuilder {
JITBuilder::new(cranelift_module::default_libcall_names()).unwrap();
JITBuilder::new(cranelift_module::default_libcall_names()).unwrap()
}

fn new() -> Self {
Expand Down

0 comments on commit 6c72453

Please sign in to comment.