Enable via yul or explain why disabled.

This commit is contained in:
chriseth
2021-01-19 16:12:53 +01:00
parent 66dac95b88
commit 06d19a9203
7 changed files with 22 additions and 2 deletions
@@ -8,6 +8,11 @@ contract C {
r += 1;
}
}
// via yul disabled because the return variables are
// fresh variables each time, while in the old code generator,
// they share a stack slot when the function is
// invoked multiple times via `_`.
// ====
// compileViaYul: false
// ----