diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3bdb04b5557..2c30ecf56906 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-08-04 H.J. Lu + + * config/i386/i386.c (ix86_compute_frame_layout): Fix a typo + in comments. + 2008-08-03 Uros Bizjak * config/i386/mmx.md (*mov_internal_rex64): Use Yi instead of x diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index f9783102179f..aed74be112e9 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;