aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-11-21 18:41:30 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-11-21 18:41:30 -0500
commitac7400c632c4fc3da45180958f693bb69acc24bd (patch)
tree9775074b321770df87807507a2cdc88c973ca680 /gcc
parent88a5e9da459030c85910ccf3f4a6216330f3dd91 (diff)
downloadgcc-ac7400c632c4fc3da45180958f693bb69acc24bd.zip
gcc-ac7400c632c4fc3da45180958f693bb69acc24bd.tar.gz
gcc-ac7400c632c4fc3da45180958f693bb69acc24bd.tar.bz2
(movqi): Fix typo in push/pop case.
From-SVN: r8545
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/m68k/m68k.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md
index 6815a06..10d444f 100644
--- a/gcc/config/m68k/m68k.md
+++ b/gcc/config/m68k/m68k.md
@@ -924,7 +924,7 @@
and pop d0/1. */
if (! reg_mentioned_p (stack_pointer_rtx, operands[1]))
{
- if (refers_to_regno_p (0, 1, operands[1], NULL_RTX))
+ if (! refers_to_regno_p (0, 1, operands[1], NULL_RTX))
return \"move%.l %/d0,%-\;move%.b %1,%/d0\;move%.l %/d0,%0\;move%.l %+,%/d0\";
else
return \"move%.l %/d1,%-\;move%.b %1,%/d1\;move%.l %/d1,%0\;move%.l %+,%/d1\";
@@ -974,7 +974,7 @@
and pop d0/1. */
if (! reg_mentioned_p (stack_pointer_rtx, operands[0]))
{
- if (refers_to_regno_p (0, 1, operands[0], NULL_RTX))
+ if (! refers_to_regno_p (0, 1, operands[0], NULL_RTX))
return \"move%.l %/d0,%-\;move%.l %1,%/d0\;move%.b %/d0,%0\;move%.l %+,%/d0\";
else
return \"move%.l %/d1,%-\;move%.l %1,%/d1\;move%.b %/d1,%0\;move%.l %+,%/d1\";