From a418656615c82a03844adabc9d2e2c6da9c0716c Mon Sep 17 00:00:00 2001 From: chriseth Date: Sat, 6 Jun 2015 15:32:15 +0200 Subject: [PATCH] Fix: Optimiser was enabled by default. --- CommandLineInterface.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/CommandLineInterface.cpp b/CommandLineInterface.cpp index 860b4c3b8..e65c602ab 100644 --- a/CommandLineInterface.cpp +++ b/CommandLineInterface.cpp @@ -412,8 +412,6 @@ bool CommandLineInterface::processInput() // TODO: Perhaps we should not compile unless requested bool optimize = m_args["optimize"].as(); unsigned runs = m_args["optimize-runs"].as(); - if (m_args.count("optimize-runs")) - optimize = true; m_compiler->compile(optimize, runs); } catch (ParserError const& _exception)