Consider the basic block B :
q = 3
r = 10
s = q +r
t=2∗r+s
t = q
u = q +r
w = 3 +x
Now consider the following basic block B2.
q = 3
r = 10
s = q +r
t1=s
t=2∗r+s
t = q
u=t1
w=3+x
State which optimaization was performed on the basic block B to get B2 :