2025-09-14 00:44:28 +09:00
|
|
|
//! Deprecated shim module for legacy Rust/inkwell backend
|
|
|
|
|
//! Please use `crate::backend::llvm_legacy` directly. This module re-exports
|
|
|
|
|
//! items to keep old paths working until full removal.
|
2025-08-18 09:14:39 +00:00
|
|
|
|
2025-09-14 00:44:28 +09:00
|
|
|
pub use crate::backend::llvm_legacy::{compile_and_execute, compile_to_object};
|
2025-08-18 09:14:39 +00:00
|
|
|
|
2025-09-14 00:44:28 +09:00
|
|
|
pub mod context {
|
|
|
|
|
pub use crate::backend::llvm_legacy::context::*;
|
2025-08-18 09:14:39 +00:00
|
|
|
}
|
2025-09-14 00:44:28 +09:00
|
|
|
pub mod compiler {
|
|
|
|
|
pub use crate::backend::llvm_legacy::compiler::*;
|
2025-08-18 09:14:39 +00:00
|
|
|
}
|
2025-09-14 00:44:28 +09:00
|
|
|
pub mod box_types {
|
|
|
|
|
pub use crate::backend::llvm_legacy::box_types::*;
|
2025-09-11 04:20:28 +09:00
|
|
|
}
|