From: Richard Kenner Date: Mon, 25 Sep 1995 21:50:02 +0000 (-0400) Subject: (put_pending_sizes): New function. X-Git-Tag: misc/cutover-egcs-0~3566 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fd7c4ac661b59b7c360374e81f5b02e568690e9;p=thirdparty%2Fgcc.git (put_pending_sizes): New function. From-SVN: r10398 --- diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 1088e095f302..3156c5853975 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -81,6 +81,16 @@ get_pending_sizes () return chain; } +void +put_pending_sizes (chain) + tree chain; +{ + if (pending_sizes) + abort (); + + pending_sizes = chain; +} + /* Given a size SIZE that may not be a constant, return a SAVE_EXPR to serve as the actual size-expression for a type or decl. */