Add constant folding for OPCODE_ROTATE_LEFT

This commit is contained in:
chss95cs@gmail.com
2019-08-03 13:26:54 -07:00
committed by Gliniak
parent 3ad80810b5
commit 3675b3860a
3 changed files with 32 additions and 1 deletions

View File

@@ -519,6 +519,7 @@ class Value {
void Shl(Value* other);
void Shr(Value* other);
void Sha(Value* other);
void RotateLeft(Value* other);
void Extract(Value* vec, Value* index);
void Select(Value* other, Value* ctrl);
void Splat(Value* other);