Merge pull request #9316 from ethereum/yul-cleanup-evm

Tiny cleanups to EVMDialect in Yul
This commit is contained in:
chriseth
2020-07-06 16:14:24 +02:00
committed by GitHub
3 changed files with 19 additions and 13 deletions
@@ -0,0 +1,9 @@
contract C {
function f() pure public {
assembly {
jumpi(2, 1)
}
}
}
// ----
// DeclarationError 4619: (75-80): Function not found.