Hello. Installing obvious patch that has just finished bootstrap on ppc64le-redhat-linux and survives regression tests.
Martin
>From 657d83387abccd33b181445e3182fe4af0b10a9a Mon Sep 17 00:00:00 2001 From: marxin <mli...@suse.cz> Date: Mon, 29 May 2017 14:05:35 +0200 Subject: [PATCH] Fix parenthesis in auto-profile.c (PR other/80909). gcc/ChangeLog: 2017-05-29 Martin Liska <mli...@suse.cz> PR other/80909 * auto-profile.c (get_function_decl_from_block): Fix parenthesis. --- gcc/auto-profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/auto-profile.c b/gcc/auto-profile.c index ff5714a6cbc..0de10402f10 100644 --- a/gcc/auto-profile.c +++ b/gcc/auto-profile.c @@ -356,7 +356,7 @@ get_function_decl_from_block (tree block) { tree decl; - if (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (block) == UNKNOWN_LOCATION)) + if (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (block)) == UNKNOWN_LOCATION) return NULL_TREE; for (decl = BLOCK_ABSTRACT_ORIGIN (block); -- 2.12.2