In[1]:= FullSimplify[Re[x + y], {x, y} \[Element] Reals]
Out[1]= x + y
In[2]:= FullSimplify[-2 Re[x + y], {x, y} \[Element] Reals]
Out[2]= -2 (x + y)
In[3]:= FullSimplify[-Re[x + y], {x, y} \[Element] Reals]
Out[3]= -Re[x + y]
Why doesn't the last one remove Re?