Rust · 308 bytes Raw Blame History
1 //! SSA-form intermediate representation.
2 //!
3 //! Typed IR with block parameters (not phi nodes).
4 //! Fortran-aware: understands array descriptors, string descriptors,
5 //! and allocatable semantics.
6
7 pub mod builder;
8 pub mod inst;
9 pub mod lower;
10 pub mod printer;
11 pub mod types;
12 pub mod verify;
13 pub mod walk;
14