aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorGeoff Keating <geoffk@cygnus.com>2000-08-02 00:53:59 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2000-08-02 00:53:59 +0000
commit8cd8f856b33bbd6c6627eb0a18e34b046e2163f1 (patch)
tree51e7cfa73194f407e18d5c607f8f9f28b8c01196 /gcc/rtl.c
parent7d17b34de55c8cd8d83581036f8e87fae492db13 (diff)
downloadgcc-8cd8f856b33bbd6c6627eb0a18e34b046e2163f1.zip
gcc-8cd8f856b33bbd6c6627eb0a18e34b046e2163f1.tar.gz
gcc-8cd8f856b33bbd6c6627eb0a18e34b046e2163f1.tar.bz2
rtl.h (enum reg_note): Add REG_MAYBE_DEAD.
* rtl.h (enum reg_note): Add REG_MAYBE_DEAD. * rtl.c (reg_note_name): Add REG_MAYBE_DEAD. * flow.c (propagate_one_insn): Allow deletion of prologue/epilogue insns if they have a REG_MAYBE_DEAD note attached. * config/rs6000/rs6000.c (rs6000_maybe_dead): New function. (rs6000_emit_load_toc_table): TOC loads may go dead. From-SVN: r35414
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index 91b38cb..dedb38a 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -258,7 +258,7 @@ const char * const reg_note_name[] =
"REG_LABEL", "REG_DEP_ANTI", "REG_DEP_OUTPUT", "REG_BR_PROB",
"REG_EXEC_COUNT", "REG_NOALIAS", "REG_SAVE_AREA", "REG_BR_PRED",
"REG_FRAME_RELATED_EXPR", "REG_EH_CONTEXT", "REG_EH_REGION",
- "REG_EH_RETHROW", "REG_SAVE_NOTE"
+ "REG_EH_RETHROW", "REG_SAVE_NOTE", "REG_MAYBE_DEAD"
};
static void fatal_with_file_and_line PARAMS ((FILE *, const char *, ...))