From 8e257e731e33236efd15eeca92dff468c496819b Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Thu, 2 Jul 2020 11:56:02 +0200 Subject: [PATCH] cranelift-wasm: expose cranelift-frontend's FunctionBuilder in the public API; --- cranelift/wasm/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cranelift/wasm/src/lib.rs b/cranelift/wasm/src/lib.rs index b3836fd251..661bfe8dd4 100644 --- a/cranelift/wasm/src/lib.rs +++ b/cranelift/wasm/src/lib.rs @@ -70,6 +70,7 @@ pub use crate::translation_utils::{ DefinedTableIndex, ElemIndex, FuncIndex, Global, GlobalIndex, GlobalInit, Memory, MemoryIndex, SignatureIndex, Table, TableElementType, TableIndex, }; +pub use cranelift_frontend::FunctionBuilder; /// Version number of this crate. pub const VERSION: &str = env!("CARGO_PKG_VERSION");