diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2000-03-14 09:36:03 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2000-03-14 09:36:03 +0000 |
commit | b451555aa1892e3737919713d53f64646803ec49 (patch) | |
tree | a77139f181a588b609288aa12d17affa0dc1dce4 | |
parent | 9f056e3b10a0e1ddb1a3109ad2bb27275c2bbd1e (diff) | |
download | gcc-b451555aa1892e3737919713d53f64646803ec49.zip gcc-b451555aa1892e3737919713d53f64646803ec49.tar.gz gcc-b451555aa1892e3737919713d53f64646803ec49.tar.bz2 |
* stor-layout.c (finalize_record_size): Fix typo.
From-SVN: r32524
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/stor-layout.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7449992..3550050 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index b9b8245..8e8a2e8 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 |