MCQ
Q.
Consider the following intermediate program in three address codep = a - b
q = p * c
p = u * v
q = p + q
Which one of the following corresponds to a static single assignment form of the above code?
q = p * c
p = u * v
q = p + q
Which one of the following corresponds to a static single assignment form of the above code?
Correct Answer: B