summaryrefslogtreecommitdiff
path: root/gcc/df.h
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2012-06-25 13:25:39 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2012-06-25 13:25:39 +0000
commitecf706e5ec4f1a866018e821659deff1d442f9c7 (patch)
treed65c918cbab139605a2b1e1899bb37533bc20c3e /gcc/df.h
parent39ce30d841a90473fc5aeefe4dc6081c1966375d (diff)
downloadgcc-ecf706e5ec4f1a866018e821659deff1d442f9c7.tar.gz
re PR debug/53740 (--enable-checking=yes,rtl bootstrap failure with ada)
gcc/ PR debug/53740 * df.h (dead_debug_add): Remove third argument. * df-problems.c (dead_debug_add): Likewise. Use the REGNO of the REG that we want to replace instead. (dead_debug_insert_temp): Use the REGNO of the reg that we want to replace instead of DF_REF_REGNO. Require there to always be at least one such use. Check for cases where the same location has more than df_ref associated with it. (df_note_bb_compute): Remove third dead_debug_add argument. * dce.c (word_dce_process_block): Likewise. From-SVN: r188934
Diffstat (limited to 'gcc/df.h')
-rw-r--r--gcc/df.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/df.h b/gcc/df.h
index 1b4882d1d16..b6d168d8ee9 100644
--- a/gcc/df.h
+++ b/gcc/df.h
@@ -1138,7 +1138,7 @@ enum debug_temp_where
extern void dead_debug_init (struct dead_debug *, bitmap);
extern void dead_debug_finish (struct dead_debug *, bitmap);
-extern void dead_debug_add (struct dead_debug *, df_ref, unsigned int);
+extern void dead_debug_add (struct dead_debug *, df_ref);
extern int dead_debug_insert_temp (struct dead_debug *,
unsigned int uregno, rtx insn,
enum debug_temp_where);