cranelift-codegen: Expose EmitState and EmitInfo from aarch64 (#5640)

This commit exposes `EmitState` and `EmitInfo` so that they can be consumed by
Winch.

This is a follow up to https://github.com/bytecodealliance/wasmtime/pull/5570,
in which this should've been included.
This commit is contained in:
Saúl Cabrera
2023-01-27 14:36:26 -05:00
committed by GitHub
parent 058d93bc64
commit 0f8393508a

View File

@@ -21,7 +21,7 @@ pub mod imms;
pub use self::imms::*;
pub mod args;
pub use self::args::*;
pub(crate) mod emit;
pub mod emit;
pub(crate) use self::emit::*;
use crate::isa::aarch64::abi::AArch64MachineDeps;