From: Jeff Law Date: Mon, 12 Feb 1996 00:18:36 +0000 (-0700) Subject: m68k.md (movqi): Call CC_STATUS_INIT when loading to/from an address register via... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3e78a97d2414a44004c874aee0b4781fa3285a54;p=gcc.git m68k.md (movqi): Call CC_STATUS_INIT when loading to/from an address register via a data register. * m68k.md (movqi): Call CC_STATUS_INIT when loading to/from an address register via a data register. From-SVN: r11206 --- diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index 84c197cbff4..d18666b97a2 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -968,6 +968,7 @@ See if the address register is used in the address. If it is, we have to generate a more complex sequence than those below. */ + CC_STATUS_INIT; if (refers_to_regno_p (REGNO (operands[0]), REGNO (operands[0]) + 1, operands[1], NULL_RTX)) { @@ -1018,6 +1019,7 @@ See if the address register is used in the address. If it is, we have to generate a more complex sequence than those below. */ + CC_STATUS_INIT; if (refers_to_regno_p (REGNO (operands[1]), REGNO (operands[1]) + 1, operands[0], NULL_RTX)) {