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/passes/Print.cpp | |
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/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index e3663e164..0fdb4255f 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -264,6 +264,7 @@ struct PrintSExpression : public WasmVisitor<PrintSExpression, void> { case Clz: o << "clz"; break; case Ctz: o << "ctz"; break; case Popcnt: o << "popcnt"; break; + case EqZ: o << "eqz"; break; case Neg: o << "neg"; break; case Abs: o << "abs"; break; case Ceil: o << "ceil"; break; |