Moved things around a bit.
This commit is contained in:
parent
385f726094
commit
4cdd726275
5
src/backend/mod.rs
Normal file
5
src/backend/mod.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
//! Backend: IR to Wasm.
|
||||||
|
|
||||||
|
mod stackify;
|
||||||
|
pub(crate) use stackify::*;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
//! IR-to-Wasm transform.
|
//! Stackifier-like algorithm to recover (or create) structured
|
||||||
|
//! control flow out of a CFG.
|
||||||
|
|
||||||
use crate::{cfg::CFGInfo, ir::*};
|
use crate::{cfg::CFGInfo, ir::*};
|
||||||
use log::debug;
|
use log::debug;
|
||||||
|
@ -210,3 +211,5 @@ impl Shape {
|
||||||
Shape::None
|
Shape::None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue