diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-19 16:31:27 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-19 16:31:27 -0700 |
commit | d802638ea36ce950f260c42e8bc8e2195c625efa (patch) | |
tree | f59fe633114f6480bf5af6bf3a5d8adbad426438 /src/wasm.h | |
parent | c8faff5ddbc7e93134763a845371b66bc2be56a4 (diff) | |
parent | ff792474724765983b14f8088c259ff55fcf567e (diff) | |
download | binaryen-d802638ea36ce950f260c42e8bc8e2195c625efa.tar.gz binaryen-d802638ea36ce950f260c42e8bc8e2195c625efa.tar.bz2 binaryen-d802638ea36ce950f260c42e8bc8e2195c625efa.zip |
Merge pull request #261 from WebAssembly/eqz
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 |