On 27/08/15 03:37, Cesar Philippidis wrote:
- ctx->ganglocal_size_host = align_and_expand (&gl_host, host_size, align);
I suspect this caused a bootstrap failure (align_and_expand unused). Worked-around as attached.
Thanks, - Tom
Mark align_and_expand as unused 2015-09-01 Tom de Vries <t...@codesourcery.com> * omp-low.c (align_and_expand): Mark as unused. --- gcc/omp-low.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/omp-low.c b/gcc/omp-low.c index a62daa2..fdca880 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -1450,7 +1450,7 @@ omp_copy_decl (tree var, copy_body_data *cb) /* Modify the old size *POLDSZ to align it up to ALIGN, and then return a value with SIZE added to it. */ -static tree +static tree ATTRIBUTE_UNUSED align_and_expand (tree *poldsz, tree size, unsigned int align) { tree oldsz = *poldsz; -- 1.9.1