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/passes/Print.cpp | |
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/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; |