Replacing store vector left/right opcodes by just using permutes.

This commit is contained in:
Ben Vanik
2013-12-15 11:58:54 -08:00
parent a44551c418
commit 88cdb9e36c
7 changed files with 67 additions and 159 deletions

View File

@@ -401,6 +401,10 @@ void Value::Not() {
case INT64_TYPE:
constant.i64 = ~constant.i64;
break;
case VEC128_TYPE:
constant.v128.low = ~constant.v128.low;
constant.v128.high = ~constant.v128.high;
break;
default:
XEASSERTALWAYS();
break;