edited by
1,693 views
1 votes
1 votes
What is the Static Single Assignment (SSA) form for the following code segment:

a = b+c;

c = a+x;

d = b+c;

d = a+x;

Should we use only 1 temporary variable for c=a+x and d=a+x because both of them evaluate the same expression finally?
edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
4
minal asked Jan 22, 2019
898 views
# of temporary variable required to create 3 address code in static single assignment form for the expression P+Q*R-S/(Q*R).