diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2015-09-29 19:48:39 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2015-09-29 12:48:39 -0700 |
commit | 89a13632e66017585247c655462681486c36caca (patch) | |
tree | 5689856c5bcb1f71ea8ecfaaf09f3ec05853b94a /gcc | |
parent | a12a043782c82c8a9b09384d74d9409b147f71d0 (diff) | |
download | gcc-89a13632e66017585247c655462681486c36caca.zip gcc-89a13632e66017585247c655462681486c36caca.tar.gz gcc-89a13632e66017585247c655462681486c36caca.tar.bz2 |
Fix typos in comments in i386.c
* config/i386/i386.c (ix86_function_arg): Fix typo in comments.
(ix86_nsaved_sseregs): Likewise.
From-SVN: r228266
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8d55423..9805eff 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-09-29 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/i386.c (ix86_function_arg): Fix typo in comments. + (ix86_nsaved_sseregs): Likewise. + 2015-09-29 Jeff Law <law@redhat.com> * config/microblaze/microblaze.c (microblaze_version_to_int): Remove diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 6f2380f..be639e0 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -8998,7 +8998,7 @@ ix86_function_arg (cumulative_args_t cum_v, machine_mode omode, 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) |