From f132af859b5eab43a71bdc764739bf8cce3225b1 Mon Sep 17 00:00:00 2001 From: Richard Earnshaw Date: Mon, 13 Mar 2000 13:24:54 +0000 Subject: stor-layout.c (new_record_layout_info): Fix typo inside ifdef STRUCTURE_SIZE_BOUNDARY. * stor-layout.c (new_record_layout_info): Fix typo inside ifdef STRUCTURE_SIZE_BOUNDARY. From-SVN: r32505 --- gcc/stor-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/stor-layout.c') diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index d2c4b7b41bf..b9b824559b7 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -422,7 +422,7 @@ new_record_layout_info (t) #ifdef STRUCTURE_SIZE_BOUNDARY /* Packed structures don't need to have minimum size. */ - if (! TYPE_PACKED (rec)) + if (! TYPE_PACKED (t)) rli->record_align = MAX (rli->record_align, STRUCTURE_SIZE_BOUNDARY); #endif -- cgit v1.2.1