Mark EVM instruction pc() as deprecated when used in inline assembly.

This commit is contained in:
Christian Parpart
2020-05-27 12:07:23 +02:00
parent b488627c79
commit b7fa5d5040
11 changed files with 74 additions and 31 deletions
@@ -0,0 +1,9 @@
contract C {
function f() pure public {
assembly {
pop(pc())
}
}
}
// ----
// Warning: (61-63): The "pc" instruction is deprecated and will be removed in the next breaking release.