in Compiler Design
1,635 views
0 votes
0 votes
Show how to transform a three-address code sequence into one in which each defined variable gets a unique variable name.
in Compiler Design
1.6k views

1 Answer

0 votes
0 votes
Converting ordinary code into SSA form is primarily a simple matter of replacing the target of each assignment with a new variable, and replacing each use of a variable with the "version" of the variable reaching that point.

Related questions