Temp. disabling warnings for macro instructions in a delay slot.
Ian Lance Taylor
iant@google.com
Wed Nov 9 20:11:00 GMT 2011
"Smets, Jan (Jan)" <jan.smets@alcatel-lucent.com> writes:
> We have following MIPS assembly code:
>
> beqz $4,9f
> li $6, X
>
> 9:
> jr $31
>
> li gets expanded to 'lui+ori'.
>
> The assembler prints a warning : Macro instruction expanded into multiple instructions in a branch delay slot.
>
> But in this case it doesn't matter what happens in the delay slot. Is there a way to locally disable warnings?
>
> (Like a .set warn / .set nowarn for example?)
I don't think there is any way to disable this warning.
If you want this code to work, I would recommend expanding the li
manually.
Ian
More information about the Binutils
mailing list