This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] microMIPS/GAS: Unbreak fixed-size delay slot handling


OK, but:

"Maciej W. Rozycki" <macro@codesourcery.com> writes:
> @@ -2315,7 +2326,8 @@ is_delay_slot_valid (const struct mips_o
>      return TRUE;
>  
>    if (mo->pinfo == INSN_MACRO)
> -    return TRUE;
> +    return ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0
> +	    ? TRUE : FALSE);

please just use:

    return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;

Richard


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]