From 6cb68f3287b9b2867946cb568eff713e89b21e47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Cabrera?= Date: Wed, 11 Jan 2023 18:33:03 -0500 Subject: [PATCH] cranelift-codegen: Expose x64 settings (#5561) Exposes x64 settings so that they can be consumed from Winch for binary emission. --- cranelift/codegen/src/isa/x64/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/codegen/src/isa/x64/mod.rs b/cranelift/codegen/src/isa/x64/mod.rs index 30483df67c..27053ef2de 100644 --- a/cranelift/codegen/src/isa/x64/mod.rs +++ b/cranelift/codegen/src/isa/x64/mod.rs @@ -23,7 +23,7 @@ mod abi; pub mod encoding; mod inst; mod lower; -mod settings; +pub mod settings; /// An X64 backend. pub(crate) struct X64Backend {