mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #3652 from ethereum/gasleft_v2
Use StaticAnalyzer to deprecate msg.gas instead of conditionally remo…
This commit is contained in:
@@ -924,8 +924,6 @@ bool ExpressionCompiler::visit(NewExpression const&)
|
||||
|
||||
bool ExpressionCompiler::visit(MemberAccess const& _memberAccess)
|
||||
{
|
||||
bool const v050 = m_context.experimentalFeatureActive(ExperimentalFeature::V050);
|
||||
|
||||
CompilerContext::LocationSetter locationSetter(m_context, _memberAccess);
|
||||
// Check whether the member is a bound function.
|
||||
ASTString const& member = _memberAccess.memberName();
|
||||
@@ -1141,10 +1139,7 @@ bool ExpressionCompiler::visit(MemberAccess const& _memberAccess)
|
||||
else if (member == "origin")
|
||||
m_context << Instruction::ORIGIN;
|
||||
else if (member == "gas")
|
||||
{
|
||||
solAssert(!v050, "");
|
||||
m_context << Instruction::GAS;
|
||||
}
|
||||
else if (member == "gasprice")
|
||||
m_context << Instruction::GASPRICE;
|
||||
else if (member == "data")
|
||||
|
||||
Reference in New Issue
Block a user