This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix multiply-add regressions after expand-from-SSA


> Actually the helper could look like

Couldn't this lead to wrong code for

a_1 = b_1 * c_1;
b_2 = b_1 + 1.0;
c_3 = b_2 + a_1;

where b_1 and b_2 could be assigned to the same partition and so the
final result would be "b_2 + b_2 * c_1"?

Paolo


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]