diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-01-06 12:51:31 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-01-06 12:51:31 -0800 |
commit | 2b46381bf4fcf8c00b15f7b1b6fd2a261908dcf4 (patch) | |
tree | eaaaf93dd20ac60ea619bde34dcda08adeef9115 /src | |
parent | ea5e4f70785f3a8f3039e1d59ba4378caa665ed0 (diff) | |
download | binaryen-2b46381bf4fcf8c00b15f7b1b6fd2a261908dcf4.tar.gz binaryen-2b46381bf4fcf8c00b15f7b1b6fd2a261908dcf4.tar.bz2 binaryen-2b46381bf4fcf8c00b15f7b1b6fd2a261908dcf4.zip |
fix missing slash in reinterpret/i* #73
Diffstat (limited to 'src')
-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 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); |