This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Fix a typo in config/i386/i386.c


I checked in the following patch to fix a typo in config/i386/i386.c.


H.J.
---
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 138610)
+++ ChangeLog	(working copy)
@@ -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
Index: config/i386/i386.c
===================================================================
--- config/i386/i386.c	(revision 138610)
+++ config/i386/i386.c	(working copy)
@@ -7287,7 +7287,8 @@ ix86_compute_frame_layout (struct ix86_f
 
   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;
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]