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, 1 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h
index cb137747f..399e58cfe 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -734,7 +734,7 @@ public:
case ConvertSInt64: o << "convert_s/i64"; break;
case PromoteFloat32: o << "promote/f32"; break;
case DemoteFloat64: o << "demote/f64"; break;
- case ReinterpretInt: o << "reinterpret" << (type == f64 ? "i64" : "i32"); break;
+ case ReinterpretInt: o << "reinterpret/" << (type == f64 ? "i64" : "i32"); break;
default: abort();
}
incIndent(o, indent);