add bnot to peepmatic + transform rule

This commit is contained in:
MaxGraey
2020-07-15 13:46:25 +03:00
parent bc1e960b9e
commit 5b38857e7f
4 changed files with 11 additions and 0 deletions

View File

@@ -45,6 +45,10 @@ pub enum Operator {
#[peepmatic(params(bNN), result(iNN))]
Bint,
/// `bnot`
#[peepmatic(params(iNN), result(iNN))]
Bnot,
/// `bor`
#[peepmatic(params(iNN, iNN), result(iNN))]
Bor,