edited by
1,145 views
1 votes
1 votes

Consider the following code segment:

c = b + a

e = c - a

f  = c * e

h = c + a

i = h + f

The minimum number of temporary variable required to convert the above code segment to static single assignment form is ________.

edited by

Please log in or register to answer this question.

Related questions

1 votes
1 votes
8 answers
1
Anjan asked Jan 9, 2018
1,775 views
Consider the following code segment:c=b+ae=c-af=c*eh=c+ai=h+f The minimum number of $\color{blue} {total}$ and $\color{blue} {temporary }$ variable required to convert t...
1 votes
1 votes
0 answers
2
AnilGoudar asked Dec 28, 2017
395 views
Convert the following 3 address code to single Static Assignment.a = b + cd = d + a.
9 votes
9 votes
1 answer
3
papesh asked Dec 17, 2016
1,926 views
$x=5$$x=x-3$$\textbf{if } x<3$$\quad y=x*2$$\quad w=y$$\textbf{else}$$\quad y=x-3$$w=x-y$$z=x+y$Give Equivalent SSA.