Commit d1d61788 by Mark Mitchell Committed by Mark Mitchell

* varasm.c (assemble_variable): Use DECL_RTL_SET_P.

From-SVN: r40495
parent 15f13f01
2001-03-15 Mark Mitchell <mark@codesourcery.com>
* varasm.c (assemble_variable): Use DECL_RTL_SET_P.
2001-03-15 Neil Booth <neil@daikokuya.demon.co.uk> 2001-03-15 Neil Booth <neil@daikokuya.demon.co.uk>
* cpp.texi: Update documentation for -include and -imacros. * cpp.texi: Update documentation for -include and -imacros.
......
2001-03-14 Mark Mitchell <mark@codesourcery.com> 2001-03-14 Mark Mitchell <mark@codesourcery.com>
* class.c (build_static_field_ref): Likewise. * class.c (build_static_field_ref): Use COPY_DECL_RTL,
DECL_RTL_SET_P, etc.
(make_method_value): Likewise. (make_method_value): Likewise.
(get_dispatch_table): Likewise. (get_dispatch_table): Likewise.
......
...@@ -1245,7 +1245,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data) ...@@ -1245,7 +1245,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
last_assemble_variable_decl = 0; last_assemble_variable_decl = 0;
if (GET_CODE (DECL_RTL (decl)) == REG) if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
{ {
/* Do output symbol info for global register variables, but do nothing /* Do output symbol info for global register variables, but do nothing
else for them. */ else for them. */
......
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