edited by
803 views
1 votes
1 votes
X = A / b

Y = C + D

Y = Y - X

X = D + Y

Z = F + Y

Z = Z + A

MInimum number of total variables needed to convert above TAC to Static Single Assignment

Answer given ==>11

My apporach

X1 = A / b

Y1 = C + D

Y2 = Y1 - X1

X2 = D + Y2

Z1 = F + Y2

Z2  = Z1 + A

Is above code in SSA ??
edited by

1 Answer

Related questions

2 votes
2 votes
1 answer
4