diff options
author | chriseth <c@ethdev.com> | 2016-04-07 02:55:46 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-04-07 02:56:00 +0800 |
commit | f227050c203fd0da70fcefbbecc922fd16045aa6 (patch) | |
tree | 40ad7d2e00f051368349bdfc017a0d4b455d8313 /libevmasm/ConstantOptimiser.h | |
parent | 193b1c940ce3e21d52e2cbdd253c1d7cb820fa06 (diff) | |
download | dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar.gz dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar.zst dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.zip |
Make solidity independent from ethcore.
Diffstat (limited to 'libevmasm/ConstantOptimiser.h')
-rw-r--r-- | libevmasm/ConstantOptimiser.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libevmasm/ConstantOptimiser.h b/libevmasm/ConstantOptimiser.h index 64cb66bb..e75eff38 100644 --- a/libevmasm/ConstantOptimiser.h +++ b/libevmasm/ConstantOptimiser.h @@ -24,7 +24,6 @@ #include <vector> #include <libdevcore/CommonData.h> #include <libdevcore/CommonIO.h> -#include <libethcore/ChainOperationParams.h> namespace dev { @@ -35,8 +34,6 @@ class AssemblyItem; using AssemblyItems = std::vector<AssemblyItem>; class Assembly; -// TODO: FIXME: HOMESTEAD: XXX: @chfast populate m_schedule from an ExtVMFace instance via ExtVMFace::evmSchedule. - /** * Abstract base class for one way to change how constants are represented in the code. */ @@ -91,7 +88,6 @@ protected: Params m_params; u256 const& m_value; - EVMSchedule m_schedule; }; /** @@ -105,8 +101,6 @@ public: ConstantOptimisationMethod(_params, _value) {} virtual bigint gasNeeded() override; virtual void execute(Assembly&, AssemblyItems&) override {} - - EVMSchedule m_schedule; }; /** @@ -121,7 +115,6 @@ public: protected: AssemblyItems m_copyRoutine; - EVMSchedule m_schedule; }; /** @@ -148,7 +141,6 @@ protected: bigint gasNeeded(AssemblyItems const& _routine); AssemblyItems m_routine; - EVMSchedule m_schedule; }; } |