This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH 08/10] Factorize condition insertion code out of build_check_stmt
Jakub Jelinek <jakub@redhat.com> writes:
> On Sat, Nov 03, 2012 at 12:03:45AM +0100, Dodji Seketeli wrote:
>> + int fallthrough_probability =
>> + then_more_likely_p
>> + ? PROB_VERY_UNLIKELY
>> + : PROB_ALWAYS - PROB_VERY_UNLIKELY;
>
> Just a formatting nit, I think = needs to go on the next line, so
>
> int fallthrough_probability
> = then_more_likely_p
> ? PROB_VERY_UNLIKELY
> : PROB_ALWAYS - PROB_VERY_UNLIKELY;
OK. Patch updated in my local tree.
> No need to repost for that.
OK, thanks.
--
Dodji