diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-19 15:56:55 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-19 15:56:55 -0700 |
commit | eb135274e30454715fca36e6b0db640778982018 (patch) | |
tree | 8d057857f9ae610744813354a4c50561aba11b5c /src/wasm.h | |
parent | c8faff5ddbc7e93134763a845371b66bc2be56a4 (diff) | |
download | binaryen-eb135274e30454715fca36e6b0db640778982018.tar.gz binaryen-eb135274e30454715fca36e6b0db640778982018.tar.bz2 binaryen-eb135274e30454715fca36e6b0db640778982018.zip |
update spec tests and support eqz
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h index ed07bf371..2fcc3cddc 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -681,7 +681,7 @@ public: // Operators enum UnaryOp { - Clz, Ctz, Popcnt, // int + Clz, Ctz, Popcnt, EqZ, // int Neg, Abs, Ceil, Floor, Trunc, Nearest, Sqrt, // float // conversions ExtendSInt32, ExtendUInt32, WrapInt64, TruncSFloat32, TruncUFloat32, TruncSFloat64, TruncUFloat64, ReinterpretFloat, // int |