This is the mail archive of the gcc-bugs@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]

[Bug tree-optimization/66726] missed optimization, factor conversion out of COND_EXPR


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66726

--- Comment #10 from Jeffrey A. Law <law at redhat dot com> ---
Sinking the cast changes the form of the range tests into one that
tree-ssa-reassoc isn't prepared to handle.   Sadly the form presented with the
cast sunk is *simpler* than the original.

I'm testing a bit of a hack to avoid the sinking of the cast in cases where
doing so is less likely to be a win.


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