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/81554] [8 Regression] 25% performance regression in Himeno benchmark


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. :)

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