summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm.h b/src/wasm.h
index d8cada7f5..a978e71ca 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -569,7 +569,9 @@ public:
std::ostream& print(std::ostream &o, unsigned indent) override {
printOpening(o, "unary ");
switch (op) {
+ case Clz: o << "clz"; break;
case Neg: o << "neg"; break;
+ case Floor: o << "floor"; break;
default: abort();
}
incIndent(o, indent);