Format src/wasm.rs with newer rustfmt.

This commit is contained in:
Dan Gohman
2018-09-21 21:29:14 -07:00
parent cb6b1a76db
commit 10edc1b6ab

View File

@@ -2,7 +2,10 @@
//! crate. //! crate.
//! //!
//! Reads Wasm binary files, translates the functions' code to Cranelift IR. //! Reads Wasm binary files, translates the functions' code to Cranelift IR.
#![cfg_attr(feature = "cargo-clippy", allow(too_many_arguments, cyclomatic_complexity))] #![cfg_attr(
feature = "cargo-clippy",
allow(too_many_arguments, cyclomatic_complexity)
)]
use cranelift_codegen::print_errors::{pretty_error, pretty_verifier_error}; use cranelift_codegen::print_errors::{pretty_error, pretty_verifier_error};
use cranelift_codegen::settings::FlagsOrIsa; use cranelift_codegen::settings::FlagsOrIsa;