Two Assignments
X = Y + Z; A = B * C; translate to:
R1 <- Y
R2 <- Z
R3 <- R1 + R2
X <- R3
R4 <- B
R5 <- C
R6 <- R4 * R5
A <- R6
<BACK
INDEX
NEXT>