vyre-foundation 0.4.1

Foundation layer: IR, type system, memory model, wire format. Zero application semantics. Part of the vyre GPU compiler.
Documentation
1
2
3
4
5
6
7
use crate::ir::{Ident, Node};
use im::HashSet;

pub(crate) struct LiveResult {
    pub(crate) nodes: Vec<Node>,
    pub(crate) live_in: HashSet<Ident>,
}