Consider the following three address code. a = a + b b = a * c a = a * b How many minimum varibales required in equivalent static single assignment code for the above code?
Consider the following code segment: x = u - t; y = x * v; x = y + w; y = t - z; y = x * y; The minimum number of total variables required to convert the above code segment to static single assignment form is