Add some missing wasm functions.

This commit is contained in:
chriseth
2020-02-04 22:44:08 +01:00
parent a7624ffc45
commit 48933df18d
3 changed files with 7 additions and 2 deletions
+5 -1
View File
@@ -311,7 +311,11 @@ bytes BinaryTransform::operator()(BuiltinCall const& _call)
bytes args = visit(_call.arguments);
if (_call.functionName == "unreachable")
return toBytes(Opcode::Unreachable);
return toBytes(Opcode::Unreachable);
else if (_call.functionName == "nop")
return toBytes(Opcode::Nop);
else if (_call.functionName == "drop")
return toBytes(Opcode::Drop);
else
{
yulAssert(builtins.count(_call.functionName), "Builtin " + _call.functionName + " not found");