From: Nathan Sidwell Date: Tue, 14 Mar 2000 09:36:03 +0000 (+0000) Subject: * stor-layout.c (finalize_record_size): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b451555aa1892e3737919713d53f64646803ec49;p=gcc.git * stor-layout.c (finalize_record_size): Fix typo. From-SVN: r32524 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 74499929f3d..3550050bef6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-03-14 Nathan Sidwell + + * stor-layout.c (finalize_record_size): Fix typo. + 2000-03-14 Stan Shebs * c-typeck.c (c_alignof): Error on incomplete types. diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index b9b824559b7..8e8a2e89f75 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -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