solidity/test/libyul/functionSideEffects/doubly_recursive_function.yul

9 lines
233 B
Plaintext
Raw Normal View History

2019-08-14 16:07:15 +00:00
{
function a() { b() }
function b() { a() }
}
// ----
2020-07-01 10:07:00 +00:00
// : movable, movable apart from effects, can be removed, can be removed if no msize
// a: movable apart from effects, can loop
// b: movable apart from effects, can loop