Merge pull request #3663 from ethereum/gasleftEmscripten

Add gasleft to FunctionType::richIdentifier().
This commit is contained in:
chriseth 2018-03-06 18:06:30 +01:00 committed by GitHub
commit 95ca829750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2344,6 +2344,7 @@ string FunctionType::richIdentifier() const
case Kind::Log2: id += "log2"; break;
case Kind::Log3: id += "log3"; break;
case Kind::Log4: id += "log4"; break;
case Kind::GasLeft: id += "gasleft"; break;
case Kind::Event: id += "event"; break;
case Kind::SetGas: id += "setgas"; break;
case Kind::SetValue: id += "setvalue"; break;