aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-20 06:44:41 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-20 06:44:41 -0400
commitd3e02253f48069b3c2e855b77d47845f151ca430 (patch)
tree17b555125bbe2bbd067dd46a41f45b22f375bf3e /gcc
parent1b69b5c5874d3215449d8c4910dcf69ba430778c (diff)
downloadgcc-d3e02253f48069b3c2e855b77d47845f151ca430.zip
gcc-d3e02253f48069b3c2e855b77d47845f151ca430.tar.gz
gcc-d3e02253f48069b3c2e855b77d47845f151ca430.tar.bz2
(udivmodhi4): Output "divu" instead of "divs".
From-SVN: r9752
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 0021b24..14f0ece 100644
--- a/gcc/config/m68k/m68k.md
+++ b/gcc/config/m68k/m68k.md
@@ -3442,9 +3442,9 @@
"*
{
#ifdef MOTOROLA
- output_asm_insn(\"and%.l %#0xFFFF,%0\;divs%.w %2,%0\", operands);
+ output_asm_insn(\"and%.l %#0xFFFF,%0\;divu%.w %2,%0\", operands);
#else
- output_asm_insn(\"and%.l %#0xFFFF,%0\;divs %2,%0\", operands);
+ output_asm_insn(\"and%.l %#0xFFFF,%0\;divu %2,%0\", operands);
#endif
if (!find_reg_note(insn, REG_UNUSED, operands[3]))
{