summaryrefslogtreecommitdiff
path: root/src/wasm-builder.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2018-11-29 13:54:10 -0800
committerGitHub <noreply@github.com>2018-11-29 13:54:10 -0800
commit252fd7f176c4a5ae6a6fa9a5124e153ddbaab638 (patch)
tree798386cd9eba764138acfbfe27c7d9d41842d811 /src/wasm-builder.h
parent5274d943ec65866089f6764af89205d003a15078 (diff)
downloadbinaryen-252fd7f176c4a5ae6a6fa9a5124e153ddbaab638.tar.gz
binaryen-252fd7f176c4a5ae6a6fa9a5124e153ddbaab638.tar.bz2
binaryen-252fd7f176c4a5ae6a6fa9a5124e153ddbaab638.zip
Add v128 type (#1777)
Diffstat (limited to 'src/wasm-builder.h')
-rw-r--r--src/wasm-builder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm-builder.h b/src/wasm-builder.h
index f59646869..f36ec7a88 100644
--- a/src/wasm-builder.h
+++ b/src/wasm-builder.h
@@ -474,6 +474,7 @@ public:
case i64: value = Literal(int64_t(0)); break;
case f32: value = Literal(float(0)); break;
case f64: value = Literal(double(0)); break;
+ case v128: assert(false && "v128 not implemented yet");
case none: return ExpressionManipulator::nop(curr);
case unreachable: return ExpressionManipulator::convert<T, Unreachable>(curr);
}