Index: gcc/ChangeLog =================================================================== --- gcc/ChangeLog (revision 228264) +++ gcc/ChangeLog (working copy) @@ -1,3 +1,8 @@ +2015-09-29 H.J. Lu <hongjiu...@intel.com> + + * config/i386/i386.c (ix86_function_arg): Fix typo in comments. + (ix86_nsaved_sseregs): Likewise. + 2015-09-29 Jeff Law <l...@redhat.com> * config/microblaze/microblaze.c (microblaze_version_to_int): Remove Index: gcc/config/i386/i386.c =================================================================== --- gcc/config/i386/i386.c (revision 228264) +++ gcc/config/i386/i386.c (working copy) @@ -8998,7 +8998,7 @@ ix86_function_arg (cumulative_args_t cum HOST_WIDE_INT bytes, words; rtx arg; - /* All pointer bounds argumntas are handled separately here. */ + /* All pointer bounds arguments are handled separately here. */ if ((type && POINTER_BOUNDS_TYPE_P (type)) || POINTER_BOUNDS_MODE_P (mode)) { @@ -11084,7 +11084,7 @@ ix86_nsaved_regs (void) return nregs; } -/* Return number of saved SSE registrers. */ +/* Return number of saved SSE registers. */ static int ix86_nsaved_sseregs (void)