Commit 1fd7c4ac by Richard Kenner

(put_pending_sizes): New function.

From-SVN: r10398
parent 5480a90c
...@@ -81,6 +81,16 @@ get_pending_sizes () ...@@ -81,6 +81,16 @@ get_pending_sizes ()
return chain; 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 /* 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. */ to serve as the actual size-expression for a type or decl. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment