* stor-layout.c (finalize_record_size): Fix typo.

From-SVN: r32524
This commit is contained in:
Nathan Sidwell 2000-03-14 09:36:03 +00:00 committed by Nathan Sidwell
parent 9f056e3b10
commit b451555aa1
2 changed files with 5 additions and 1 deletions

View 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.

View 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