Actually support V128 types in frontend.

This commit is contained in:
Chris Fallin 2024-03-27 22:35:16 -07:00
parent 6603189fc2
commit 8e42abe91b

View file

@ -679,6 +679,11 @@ impl LocalTracker {
ListRef::default(),
types,
)),
Type::V128 => body.add_value(ValueDef::Operator(
Operator::V128Const { value: 0 },
ListRef::default(),
types,
)),
_ => todo!("unsupported type: {:?}", ty),
};
body.append_to_block(at_block, val);