vyre-conform 0.1.0

Conformance suite for vyre backends — proves byte-identical output to CPU reference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub enum Opcode {
    Add,
}

pub fn run(ops: &[Opcode]) -> u32 {
    for op in ops {
        match op { //~ ERROR match-on-op-kind dispatcher
            Opcode::Add => {}
        }
    }
    //~^^^^^ ERROR interpreter loop
    0
}