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