diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-03-28 22:39:20 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-03-28 22:39:20 +0000 |
commit | 21820ce1049e4de238599558db1626f597877e14 (patch) | |
tree | 2f6b39fbd2f82fecc23030928f2806fecc30b80e /gcc/rtl.c | |
parent | 6e39f10726bbd99fdae6b600be1910c2e3f90185 (diff) | |
download | gcc-21820ce1049e4de238599558db1626f597877e14.tar.gz |
* rtl.c (note_insn_name): Add NOTE_REPEATED_LINE_NUMBER.
(reg_note_name): Add REG_BR_PROB and REG_EXEC_COUNT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13821 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index b77df812f4d..a391c3857d8 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -1,5 +1,5 @@ /* Allocate and read RTL for GNU C Compiler. - Copyright (C) 1987, 1988, 1991, 1994 Free Software Foundation, Inc. + Copyright (C) 1987, 1988, 1991, 1994, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -173,13 +173,15 @@ char *note_insn_name[] = { 0 , "NOTE_INSN_DELETED", "NOTE_INSN_LOOP_CONT", "NOTE_INSN_LOOP_VTOP", "NOTE_INSN_PROLOGUE_END", "NOTE_INSN_EPILOGUE_BEG", "NOTE_INSN_DELETED_LABEL", "NOTE_INSN_FUNCTION_BEG", - "NOTE_INSN_EH_REGION_BEG", "NOTE_INSN_EH_REGION_END"}; + "NOTE_INSN_EH_REGION_BEG", "NOTE_INSN_EH_REGION_END", + "NOTE_REPEATED_LINE_NUMBER" }; char *reg_note_name[] = { "", "REG_DEAD", "REG_INC", "REG_EQUIV", "REG_WAS_0", "REG_EQUAL", "REG_RETVAL", "REG_LIBCALL", "REG_NONNEG", "REG_NO_CONFLICT", "REG_UNUSED", "REG_CC_SETTER", "REG_CC_USER", "REG_LABEL", - "REG_DEP_ANTI", "REG_DEP_OUTPUT" }; + "REG_DEP_ANTI", "REG_DEP_OUTPUT", "REG_BR_PROB", + "REG_EXEC_COUNT" }; /* Allocate an rtx vector of N elements. Store the length, and initialize all elements to zero. */ |