This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/81554] [8 Regression] 25% performance regression in Himeno benchmark
- From: "pinskia at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 26 Jul 2017 00:36:12 +0000
- Subject: [Bug tree-optimization/81554] [8 Regression] 25% performance regression in Himeno benchmark
- Auto-submitted: auto-generated
- References: <bug-81554-4@http.gcc.gnu.org/bugzilla/>
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. :)