arm.c (load_multiple_sequence, [...]): Fix spelling in two comments.
authorGreta Yorsh <greta.yorsh@arm.com>
Fri, 19 Apr 2013 13:25:09 +0000 (14:25 +0100)
committerGreta Yorsh <gretay@gcc.gnu.org>
Fri, 19 Apr 2013 13:25:09 +0000 (14:25 +0100)
2013-04-19  Greta Yorsh  <Greta.Yorsh@arm.com>

* config/arm/arm.c (load_multiple_sequence, ldm_stm_operation_p): Fix
spelling in two comments.

From-SVN: r198093

gcc/ChangeLog
gcc/config/arm/arm.c

index 439471d4d79534e3211de1daf9caf0dca312b35b..e395bd172d10a86e9f5c8800e6fc9c6869e1aab9 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-19  Greta Yorsh  <Greta.Yorsh@arm.com>
+
+       * config/arm/arm.c (load_multiple_sequence, ldm_stm_operation_p): Fix
+       spelling in two comments.
+
 2013-04-19  Greta Yorsh  <Greta.Yorsh@arm.com>
 
        PR target/56797
index 7567afc719af1ad806f76733cfcee708ac6f708a..464d91c88ab4ad7d30acdccef83c72d6bbd5f788 100644 (file)
@@ -10491,7 +10491,7 @@ ldm_stm_operation_p (rtx op, bool load, enum machine_mode mode,
 
   /* Don't allow SP to be loaded unless it is also the base register. It
      guarantees that SP is reset correctly when an LDM instruction
-     is interruptted. Otherwise, we might end up with a corrupt stack.  */
+     is interrupted. Otherwise, we might end up with a corrupt stack.  */
   if (load && (REGNO (reg) == SP_REGNUM) && (REGNO (addr) != SP_REGNUM))
     return false;
 
@@ -10757,7 +10757,7 @@ load_multiple_sequence (rtx *operands, int nops, int *regs, int *saved_order,
 
           /* Don't allow SP to be loaded unless it is also the base
              register.  It guarantees that SP is reset correctly when
-             an LDM instruction is interruptted.  Otherwise, we might
+             an LDM instruction is interrupted.  Otherwise, we might
              end up with a corrupt stack.  */
           if (unsorted_regs[i] == SP_REGNUM && base_reg != SP_REGNUM)
             return 0;