[CPU] Added constant propagation pass for: OPCODE_AND_NOT

This commit is contained in:
Gliniak
2022-03-07 08:17:51 +01:00
parent 6b45cf8447
commit 0f2a7105b9
4 changed files with 31 additions and 21 deletions

View File

@@ -516,6 +516,7 @@ class Value {
void Or(Value* other);
void Xor(Value* other);
void Not();
void AndNot(Value* other);
void Shl(Value* other);
void Shr(Value* other);
void Sha(Value* other);