diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 14:22:54 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 14:22:54 +0000 |
commit | b14b4511a37619241dcd993dedc056b9fc8aad92 (patch) | |
tree | a6401873c13d46bbe28cb405a16266dec306bd8b /gcc/config/m68k/lb1sf68.asm | |
parent | 6217c238d53721f35f18268414829edc7c331dd3 (diff) | |
download | gcc-b14b4511a37619241dcd993dedc056b9fc8aad92.tar.gz |
* config/m68k/lb1sf68.asm: Follow spelling conventions.
* config/m68k/m68k.c: Likewise.
* config/m68k/m68k.h: Likewise.
* config/m68k/m68k.md: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m68k/lb1sf68.asm')
-rw-r--r-- | gcc/config/m68k/lb1sf68.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/m68k/lb1sf68.asm b/gcc/config/m68k/lb1sf68.asm index 8c681ed5385..755f1af84da 100644 --- a/gcc/config/m68k/lb1sf68.asm +++ b/gcc/config/m68k/lb1sf68.asm @@ -416,11 +416,11 @@ L4: lsrl IMM (1), d1 /* shift divisor */ lsrl IMM (1), d0 /* shift dividend */ cmpl IMM (0x10000), d1 /* still divisor >= 2 ^ 16 ? */ jcc L4 - divu d1, d0 /* now we have 16 bit divisor */ + divu d1, d0 /* now we have 16-bit divisor */ andl IMM (0xffff), d0 /* mask out divisor, ignore remainder */ -/* Multiply the 16 bit tentative quotient with the 32 bit divisor. Because of - the operand ranges, this might give a 33 bit product. If this product is +/* Multiply the 16-bit tentative quotient with the 32-bit divisor. Because of + the operand ranges, this might give a 33-bit product. If this product is greater than the dividend, the tentative quotient was too large. */ movel d2, d1 mulu d0, d1 /* low part, 32 bits */ @@ -440,7 +440,7 @@ L6: movel sp@+, d2 #else /* __mcoldfire__ */ -/* Coldfire implementation of non-restoring division algorithm from +/* ColdFire implementation of non-restoring division algorithm from Hennessy & Patterson, Appendix A. */ link a6,IMM (-12) moveml d2-d4,sp@ |