From 1fd7c4ac661b59b7c360374e81f5b02e568690e9 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 25 Sep 1995 17:50:02 -0400 Subject: [PATCH] (put_pending_sizes): New function. From-SVN: r10398 --- gcc/stor-layout.c | 10 ++++++++++ 1 file changed, 10 insertions(+) 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. */ -- 2.47.2