OSDN Git Service

* stor-layout.c (finalize_record_size): Fix typo.
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Mar 2000 09:36:03 +0000 (09:36 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Mar 2000 09:36:03 +0000 (09:36 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32524 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/stor-layout.c

index 7449992..3550050 100644 (file)
@@ -1,3 +1,7 @@
+2000-03-14  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * stor-layout.c (finalize_record_size): Fix typo.
+
 2000-03-14  Stan Shebs  <shebs@apple.com>
 
        * c-typeck.c (c_alignof): Error on incomplete types.
index b9b8245..8e8a2e8 100644 (file)
@@ -688,7 +688,7 @@ finalize_record_size (rli)
   /* Determine the desired alignment.  */
 #ifdef ROUND_TYPE_ALIGN
   TYPE_ALIGN (rli->t) = ROUND_TYPE_ALIGN (rli->t, TYPE_ALIGN (rli->t),
-                                         record_align);
+                                         rli->record_align);
 #else
   TYPE_ALIGN (rli->t) = MAX (TYPE_ALIGN (rli->t), rli->record_align);
 #endif