Content deleted Content added
m Formatting: wrapped "a" in code tag. |
No edit summary Tag: Reverted |
||
Line 8:
a = f(b * c)
The set of live variables between lines
Note that the assignment to <code>a</code> may be eliminated as <code>a</code> is not used later, but there is insufficient information to justify removing all of line 3 as <code>f</code> may have side effects (printing <code>b * c</code>, perhaps).
|