[Bug tree-optimization/81554] [8 Regression] 25% performance regression in Himeno benchmark
pinskia at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Jul 26 00:36:00 GMT 2017
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81554
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
#define MR(mt,n,r,c,d) mt->m[(n) * mt->mrows * mt->mcols * mt->mdeps + (r) *
mt->mcols* mt->mdeps + (c) * mt->mdeps + (d)]
#define MR(mt,n,r,c,d) mt->m[(((n) * mt->mrows + (r)) * mt->mcols + (c)) *
mt->mdeps + (d)]
Is not being done. :)
More information about the Gcc-bugs
mailing list