From ca53394832ed362f3701eeb5c1f94ce3e0156614 Mon Sep 17 00:00:00 2001 From: Bhargava Shastry Date: Thu, 25 Feb 2021 11:39:56 +0100 Subject: [PATCH] Fuzzer: Enable via IR code generation. --- test/tools/fuzzer_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tools/fuzzer_common.cpp b/test/tools/fuzzer_common.cpp index d8e1b3b96..066f4404c 100644 --- a/test/tools/fuzzer_common.cpp +++ b/test/tools/fuzzer_common.cpp @@ -104,7 +104,7 @@ void FuzzerUtil::testCompiler( compiler.setSources(_input); compiler.setEVMVersion(evmVersion); compiler.setOptimiserSettings(optimiserSettings); - compiler.enableIRGeneration(_compileViaYul); + compiler.setViaIR(_compileViaYul); try { compiler.compile();