> After this commit (r249800), GCC builds fail for arm and aarch64:
> 
> /gccsrc/gcc/except.c: In function ???void
> sjlj_emit_function_enter(rtx_code_label*)???:
> /gcc-fsf/gccsrc/gcc/except.c:1183: error: conversion from ???int??? to
> non-scalar type ???profile_probability??? requested
> make[2]: *** [except.o] Error 1

The following patch should help
Index: except.c
===================================================================
--- except.c    (revision 249800)
+++ except.c    (working copy)
@@ -1180,7 +1180,7 @@ sjlj_emit_function_enter (rtx_code_label
 
       emit_cmp_and_jump_insns (x, const0_rtx, NE, 0,
                               TYPE_MODE (integer_type_node), 0,
-                              dispatch_label, REG_BR_PROB_BASE / 100);
+                              dispatch_label, profile_probability::unlikely 
());
 #else
       expand_builtin_setjmp_setup (addr, dispatch_label);
 #endif


I will verify that cross compiler builds and commit it.

Honza

Reply via email to