diff options
author | Richard Stallman <rms@gnu.org> | 1992-06-24 04:17:16 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-06-24 04:17:16 +0000 |
commit | 2296cba35f3b6706fab781b07cd4f55d9e4084ae (patch) | |
tree | 84b8c2709a14382413ecb0c30f41dd7961044bae /gcc/config/sparc/sparc.c | |
parent | 9b3b4b3e6e78636a700a7c71d5a9e52c2d3dd1b3 (diff) | |
download | gcc-2296cba35f3b6706fab781b07cd4f55d9e4084ae.zip gcc-2296cba35f3b6706fab781b07cd4f55d9e4084ae.tar.gz gcc-2296cba35f3b6706fab781b07cd4f55d9e4084ae.tar.bz2 |
fix typos in comments.
From-SVN: r1270
Diffstat (limited to 'gcc/config/sparc/sparc.c')
-rw-r--r-- | gcc/config/sparc/sparc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 3d453ca..d91a4c3 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -1018,7 +1018,7 @@ mem_aligned_8 (mem) } /* If it's the stack or frame pointer, check offset alignment. - We can have improper aligment in the function entry code. */ + We can have improper alignment in the function entry code. */ if (base && (REGNO (base) == FRAME_POINTER_REGNUM || REGNO (base) == STACK_POINTER_REGNUM)) @@ -1217,7 +1217,7 @@ output_move_double (operands) } /* Output assembler code to perform a quadword move insn - with operands OPERANDS. This is very similar to the preceeding + with operands OPERANDS. This is very similar to the preceding output_move_double function. */ char * @@ -2676,7 +2676,7 @@ memory_ok_for_ldd (addr1, addr2) if (reg1 != REGNO (XEXP (addr2, 0))) return 0; - /* The first offset must be evenly divisable by 8 to ensure the + /* The first offset must be evenly divisible by 8 to ensure the address is 64 bit aligned. */ if (offset1 % 8 != 0) return 0; |