cranelift: Register all functions in test file for interpreter (#4817)

* cranelift: Implement `bnot` in interpreter

* cranelift: Register all functions in test file for interpreter

* cranelift: Relax signature checking for bools and vectors
This commit is contained in:
Afonso Bordado
2022-08-30 23:45:21 +01:00
committed by GitHub
parent da0d8781b5
commit 3ce3eeb668
7 changed files with 150 additions and 39 deletions

View File

@@ -679,7 +679,7 @@ impl Value for DataValue {
}
fn not(self) -> ValueResult<Self> {
unary_match!(!(&self); [I8, I16, I32, I64])
unary_match!(!(&self); [B, I8, I16, I32, I64])
}
fn count_ones(self) -> ValueResult<Self> {