Inline assembly to AST json export

This commit is contained in:
djudjuu
2019-11-13 12:13:22 +01:00
committed by chriseth
parent 684ccea6f0
commit e437443645
30 changed files with 2777 additions and 12 deletions
@@ -0,0 +1,9 @@
contract C {
struct S { uint x; }
S s;
function e() pure public {
assembly { let x := s_offset let y := mul(s_slot, 2) }
}
}
// ----