Manually apply formatting to cfg statement

This commit is contained in:
Mark McCaskey 2019-12-05 12:01:46 -08:00 committed by GitHub
parent 176b938cb6
commit d144976da0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -235,10 +235,13 @@ pub fn default_compiler() -> impl Compiler {
#[cfg(all(feature = "default-backend-llvm", not(feature = "docs")))]
use wasmer_llvm_backend::LLVMCompiler as DefaultCompiler;
#[cfg(all(any(
feature = "default-backend-singlepass",
all(feature = "deterministic-execution", feature = "singlepass")
), not(feature = "docs")))]
#[cfg(all(
any(
feature = "default-backend-singlepass",
all(feature = "deterministic-execution", feature = "singlepass")
),
not(feature = "docs")
))]
use wasmer_singlepass_backend::SinglePassCompiler as DefaultCompiler;
#[cfg(any(feature = "default-backend-cranelift", feature = "docs"))]