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]

[PATCH][committed] Remove dead FIXME


Hi all,

tree-ssa-loop-prefetch.c used to include expr.h so that optabs would work but since the
optabs headers were cleaned up in the last (couple of?) releases it no longer needs to do that
and expr.h is no longer included, but the stale FIXME comment is still there.
This patch removes it.

Committing to trunk as obvious.

Thanks,
Kyrill

2016-11-21  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

    * tree-ssa-loop-prefetch.c: Delete FIXME after the includes.
commit 153c0f1b4c5057482acdd1447239e0cb29261625
Author: Kyrylo Tkachov <kyrylo.tkachov@arm.com>
Date:   Mon Nov 21 14:12:42 2016 +0000

    [obvious] Remove dead FIXME

diff --git a/gcc/tree-ssa-loop-prefetch.c b/gcc/tree-ssa-loop-prefetch.c
index 43ee85a..0a2ee5e 100644
--- a/gcc/tree-ssa-loop-prefetch.c
+++ b/gcc/tree-ssa-loop-prefetch.c
@@ -48,10 +48,6 @@ along with GCC; see the file COPYING3.  If not see
 #include "tree-inline.h"
 #include "tree-data-ref.h"
 
-
-/* FIXME: Needed for optabs, but this should all be moved to a TBD interface
-   between the GIMPLE and RTL worlds.  */
-
 /* This pass inserts prefetch instructions to optimize cache usage during
    accesses to arrays in loops.  It processes loops sequentially and:
 

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