mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #11482 from ethereum/fixUnreachable2
Fix control-flow handling of modifiers without body.
This commit is contained in:
commit
a8ffa6c08d
@ -308,7 +308,7 @@ bool ControlFlowBuilder::visit(ModifierInvocation const& _modifierInvocation)
|
|||||||
_modifierInvocation.name().annotation().referencedDeclaration
|
_modifierInvocation.name().annotation().referencedDeclaration
|
||||||
);
|
);
|
||||||
if (!modifierDefinition) return false;
|
if (!modifierDefinition) return false;
|
||||||
solAssert(!!modifierDefinition, "");
|
if (!modifierDefinition->isImplemented()) return false;
|
||||||
solAssert(!!m_returnNode, "");
|
solAssert(!!m_returnNode, "");
|
||||||
|
|
||||||
m_placeholderEntry = newLabel();
|
m_placeholderEntry = newLabel();
|
||||||
|
@ -29,9 +29,8 @@
|
|||||||
namespace solidity::frontend
|
namespace solidity::frontend
|
||||||
{
|
{
|
||||||
|
|
||||||
/** Helper class that builds the control flow of a function or modifier.
|
/**
|
||||||
* Modifiers are not yet applied to the functions. This is done in a second
|
* Helper class that builds the control flow of a function or modifier.
|
||||||
* step in the CFG class.
|
|
||||||
*/
|
*/
|
||||||
class ControlFlowBuilder: private ASTConstVisitor, private yul::ASTWalker
|
class ControlFlowBuilder: private ASTConstVisitor, private yul::ASTWalker
|
||||||
{
|
{
|
||||||
|
@ -23,5 +23,4 @@ contract C is B {
|
|||||||
// ====
|
// ====
|
||||||
// SMTEngine: all
|
// SMTEngine: all
|
||||||
// ----
|
// ----
|
||||||
// Warning 5740: (62-111): Unreachable code.
|
|
||||||
// Warning 6328: (66-75): CHC: Assertion violation happens here.\nCounterexample:\ns = false\n\nTransaction trace:\nB.constructor()\nState: s = false\nA.f()
|
// Warning 6328: (66-75): CHC: Assertion violation happens here.\nCounterexample:\ns = false\n\nTransaction trace:\nB.constructor()\nState: s = false\nA.f()
|
||||||
|
@ -18,5 +18,4 @@ contract B is A {
|
|||||||
// ====
|
// ====
|
||||||
// SMTEngine: all
|
// SMTEngine: all
|
||||||
// ----
|
// ----
|
||||||
// Warning 5740: (62-123): Unreachable code.
|
|
||||||
// Warning 6328: (94-104): CHC: Assertion violation happens here.\nCounterexample:\ns = true\nx = true\n\nTransaction trace:\nB.constructor()\nState: s = false\nA.f()
|
// Warning 6328: (94-104): CHC: Assertion violation happens here.\nCounterexample:\ns = true\nx = true\n\nTransaction trace:\nB.constructor()\nState: s = false\nA.f()
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
abstract contract A {
|
||||||
|
function f() public view mod {
|
||||||
|
require(block.timestamp > 10);
|
||||||
|
}
|
||||||
|
modifier mod() virtual { }
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// SyntaxError 2883: (129-132): Modifier body does not contain '_'.
|
@ -0,0 +1,6 @@
|
|||||||
|
abstract contract A {
|
||||||
|
function f() public view mod {
|
||||||
|
require(block.timestamp > 10);
|
||||||
|
}
|
||||||
|
modifier mod() virtual;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user