From 15b689b2ce8ae7cc8195292ea841d48d263e4a93 Mon Sep 17 00:00:00 2001 From: Bhargava Shastry Date: Mon, 4 May 2020 23:00:07 +0200 Subject: [PATCH] Remove opcodes that eat up too much VM memory --- test/tools/ossfuzz/protoToYul.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tools/ossfuzz/protoToYul.cpp b/test/tools/ossfuzz/protoToYul.cpp index 2c4ccfc60..157ceedbb 100644 --- a/test/tools/ossfuzz/protoToYul.cpp +++ b/test/tools/ossfuzz/protoToYul.cpp @@ -237,7 +237,7 @@ void ProtoConverter::visit(Expression const& _x) m_output << dictionaryToken(); break; case Expression::kLowcall: - visit(_x.lowcall()); +// visit(_x.lowcall()); break; case Expression::kCreate: visit(_x.create()); @@ -1373,7 +1373,7 @@ void ProtoConverter::visit(Statement const& _x) m_output << "continue\n"; break; case Statement::kLogFunc: - visit(_x.log_func()); +// visit(_x.log_func()); break; case Statement::kCopyFunc: visit(_x.copy_func());