diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fe99d98..c803640 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-04 Kevin Buettner <kevinb@redhat.com> + + * dwarf2out.c (rtl_for_decl_location): Don't return NULL_RTX for + global register variables. + 2003-03-04 Alexandre Oliva <aoliva@redhat.com> * reload.c (reload_adjust_reg_for_mode): New function. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index a1a06cb..b75481c 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -9370,13 +9370,17 @@ rtl_for_decl_location (decl) rtl = DECL_RTL_IF_SET (decl); /* When generating abstract instances, ignore everything except - constants and symbols living in memory. */ + constants, symbols living in memory, and symbols living in + fixed registers. */ if (! reload_completed) { if (rtl && (CONSTANT_P (rtl) || (GET_CODE (rtl) == MEM - && CONSTANT_P (XEXP (rtl, 0))))) + && CONSTANT_P (XEXP (rtl, 0))) + || (GET_CODE (rtl) == REG + && TREE_CODE (decl) == VAR_DECL + && TREE_STATIC (decl)))) { rtl = (*targetm.delegitimize_address) (rtl); return rtl; |