diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-23 07:14:07 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-23 07:14:07 +0000 |
commit | 4816399963ee82660f4e818a049d4f16d09aa64d (patch) | |
tree | bacbc60b12bc81575fde04ef6114280a5e5fbc54 /gcc/rtl.c | |
parent | f71e5a0252c18f3d2f112e4396e7d57d127df1d1 (diff) | |
download | gcc-4816399963ee82660f4e818a049d4f16d09aa64d.tar.gz |
* reorg.c (dbr_schedule): At end of this pass, add REG_BR_PRED
note holding get_jump_flags() calculation to all JUMP_INSNs.
* rtl.h (enum reg_note): New note types REG_BR_PRED and REG_SAVE_AREA.
* rtl.c (reg_note_name): Add new note types.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15670 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index 1f2c9dde0ff..b61b95ee352 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -181,7 +181,8 @@ char *reg_note_name[] = { "", "REG_DEAD", "REG_INC", "REG_EQUIV", "REG_WAS_0", "REG_NONNEG", "REG_NO_CONFLICT", "REG_UNUSED", "REG_CC_SETTER", "REG_CC_USER", "REG_LABEL", "REG_DEP_ANTI", "REG_DEP_OUTPUT", "REG_BR_PROB", - "REG_EXEC_COUNT", "REG_NOALIAS" }; + "REG_EXEC_COUNT", "REG_NOALIAS", "REG_SAVE_AREA", + "REG_BR_PRED" }; /* Allocate an rtx vector of N elements. Store the length, and initialize all elements to zero. */ |