On 10/02/2013 03:33 PM, Andrew MacLeod wrote:
On 10/02/2013 03:29 PM, Paolo Carlini wrote:
Hi,

currently bootstrap is broken for me with errors of this kind:

/scratch/Gcc/svn-dirs/trunk/gcc/graphite-scop-detection.c: In function ‘void canonicalize_loop_closed_ssa(loop_p)’: /scratch/Gcc/svn-dirs/trunk/gcc/graphite-scop-detection.c:1335:26: error: ‘replace_exp’ was not declared in this scope
make[2]: *** [graphite-scop-detection.o] Error 1
make[2]: *** Waiting for unfinished jobs....
/scratch/Gcc/svn-dirs/trunk/gcc/graphite-sese-to-poly.c: In function ‘void propagate_expr_outside_region(tree, tree, sese)’: /scratch/Gcc/svn-dirs/trunk/gcc/graphite-sese-to-poly.c:2135:30: error: ‘replace_exp’ was not declared in this scope /scratch/Gcc/svn-dirs/trunk/gcc/graphite-sese-to-poly.c: In function ‘void rewrite_cross_bb_scalar_dependence(scop_p, tree, tree, gimple)’: /scratch/Gcc/svn-dirs/trunk/gcc/graphite-sese-to-poly.c:2348:31: error: ‘replace_exp’ was not declared in this scope

is the issue known? Trivially, a missing include?

Thanks,
Paolo.
Yeah, see http://gcc.gnu.org/ml/gcc-patches/2013-10/msg00198.html
Can you verify that adding
#include "tree-ssa-propagate.h"
to graphite-scop-detection.c and graphite-sese-to-poly.c solves the issue?

I believe it to be an issue of not having CLOOG vs having it. And I dont have it which #ifdefs out a lot of code.

Andrew
ie, like this
 And I'll check it in

Andrew
Index: graphite-scop-detection.c
===================================================================
*** graphite-scop-detection.c   (revision 203121)
--- graphite-scop-detection.c   (working copy)
*************** along with GCC; see the file COPYING3.
*** 38,43 ****
--- 38,44 ----
  #include "tree-scalar-evolution.h"
  #include "tree-pass.h"
  #include "sese.h"
+ #include "tree-ssa-propagate.h"
  
  #ifdef HAVE_cloog
  #include "graphite-poly.h"
Index: graphite-sese-to-poly.c
===================================================================
*** graphite-sese-to-poly.c     (revision 203121)
--- graphite-sese-to-poly.c     (working copy)
*************** along with GCC; see the file COPYING3.
*** 41,46 ****
--- 41,47 ----
  #include "tree-scalar-evolution.h"
  #include "domwalk.h"
  #include "sese.h"
+ #include "tree-ssa-propagate.h"
  
  #ifdef HAVE_cloog
  #include "graphite-poly.h"

Reply via email to