diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-20 06:44:41 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-20 06:44:41 -0400 |
commit | d3e02253f48069b3c2e855b77d47845f151ca430 (patch) | |
tree | 17b555125bbe2bbd067dd46a41f45b22f375bf3e | |
parent | 1b69b5c5874d3215449d8c4910dcf69ba430778c (diff) | |
download | gcc-d3e02253f48069b3c2e855b77d47845f151ca430.zip gcc-d3e02253f48069b3c2e855b77d47845f151ca430.tar.gz gcc-d3e02253f48069b3c2e855b77d47845f151ca430.tar.bz2 |
(udivmodhi4): Output "divu" instead of "divs".
From-SVN: r9752
-rw-r--r-- | gcc/config/m68k/m68k.md | 4 |
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])) { |