* varasm.c (assemble_variable): Use DECL_RTL_SET_P.
From-SVN: r40495
This commit is contained in:
parent
15f13f01ed
commit
d1d617880c
@ -1,3 +1,7 @@
|
||||
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>
|
||||
|
||||
* cpp.texi: Update documentation for -include and -imacros.
|
||||
|
@ -1,6 +1,7 @@
|
||||
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.
|
||||
(get_dispatch_table): Likewise.
|
||||
|
||||
|
@ -1245,7 +1245,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
|
||||
|
||||
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
|
||||
else for them. */
|
||||
|
Loading…
Reference in New Issue
Block a user