Q. Consider the following expression
u*v+a-b*c
Which one of the following corresponds to a static single assignment from the above expressions
u*v+a-b*c
Which one of the following corresponds to a static single assignment from the above expressions
β
Correct Answer: (C)
x1 = a - b y2 = x1 * c x2 = u * v y3 = x2 + y2