Remove obsolete identifer for the identity precompile

This commit is contained in:
Alex Beregszaszi 2019-03-22 03:31:11 +00:00
parent b3b1a499e5
commit d2185bf529
2 changed files with 0 additions and 4 deletions

View File

@ -41,7 +41,6 @@ unsigned const CompilerUtils::dataStartOffset = 4;
size_t const CompilerUtils::freeMemoryPointer = 64;
size_t const CompilerUtils::zeroPointer = CompilerUtils::freeMemoryPointer + 32;
size_t const CompilerUtils::generalPurposeMemoryStart = CompilerUtils::zeroPointer + 32;
unsigned const CompilerUtils::identityContractAddress = 4;
static_assert(CompilerUtils::freeMemoryPointer >= 64, "Free memory pointer must not overlap with scratch area.");
static_assert(CompilerUtils::zeroPointer >= CompilerUtils::freeMemoryPointer + 32, "Zero pointer must not overlap with free memory pointer.");

View File

@ -298,9 +298,6 @@ public:
static size_t const generalPurposeMemoryStart;
private:
/// Address of the precompiled identity contract.
static unsigned const identityContractAddress;
/// Appends code that cleans higher-order bits for integer types.
void cleanHigherOrderBits(IntegerType const& _typeOnStack);