diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2008-08-04 12:29:08 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2008-08-04 05:29:08 -0700 |
commit | 5b2314f66005b217e7311c4c91643a3db48b9a05 (patch) | |
tree | b1504f57cbe827b0cda38ac4965caa1f4a869a48 /gcc | |
parent | b1c11e0e0a912a1581d060a71f6e1bb02b4f386a (diff) | |
download | gcc-5b2314f66005b217e7311c4c91643a3db48b9a05.zip gcc-5b2314f66005b217e7311c4c91643a3db48b9a05.tar.gz gcc-5b2314f66005b217e7311c4c91643a3db48b9a05.tar.bz2 |
i386.c (ix86_compute_frame_layout): Fix a typo in comments.
2008-08-04 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (ix86_compute_frame_layout): Fix a typo
in comments.
From-SVN: r138611
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3bdb04..2c30ecf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-08-04 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/i386.c (ix86_compute_frame_layout): Fix a typo + in comments. + 2008-08-03 Uros Bizjak <ubizjak@gmail.com> * config/i386/mmx.md (*mov<mode>_internal_rex64): Use Yi instead of x diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index f978310..aed74be 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -7287,7 +7287,8 @@ ix86_compute_frame_layout (struct ix86_frame *frame) frame->hard_frame_pointer_offset = offset; - /* Set offset to aligned because the realigned frame tarts from here. */ + /* Set offset to aligned because the realigned frame starts from + here. */ if (stack_realign_fp) offset = (offset + stack_alignment_needed -1) & -stack_alignment_needed; |