diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-29 19:07:15 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-29 19:07:15 -0400 |
commit | be972023889c61cdd9340c7d2722dc656b557020 (patch) | |
tree | d38da3121a20a1fbea7a226cf2108c7ea08f9ecb | |
parent | 5cf3f46752ef19d000ee982757211be3f17e026c (diff) | |
download | gcc-be972023889c61cdd9340c7d2722dc656b557020.zip gcc-be972023889c61cdd9340c7d2722dc656b557020.tar.gz gcc-be972023889c61cdd9340c7d2722dc656b557020.tar.bz2 |
(bc_output_constructor): Return type now rtx.
From-SVN: r7828
-rw-r--r-- | gcc/varasm.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index cd49b0c..4a46ec1 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1358,10 +1358,9 @@ contains_pointers_p (type) } } -/* Output text storage for constructor CONSTR. Returns rtx of - storage. */ +/* Output text storage for constructor CONSTR. */ -rtx +void bc_output_constructor (constr) tree constr; { |