summaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1998-09-05 21:57:56 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1998-09-05 21:57:56 +0000
commit86b18255f2a5ce9abdce76591122f950a3acf4e9 (patch)
tree52930dedd01fd3b5a404a92454a487c37b16e941 /gcc/rtl.c
parent1d42585d19883e3c1a597b98615257c9f3b6a066 (diff)
downloadgcc-86b18255f2a5ce9abdce76591122f950a3acf4e9.tar.gz
* rtl.h (enum reg_note): Add REG_FRAME_RELATED_EXPR.
* rtl.c (reg_note_name): Likewise. * rtl.texi (REG_NOTES): Likewise. * dwarf2out.c (dwarf2out_frame_debug): Use it. Recognize a store without an offset. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22273 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index 396566d36a7..26ffc9a2a10 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_CC_SETTER", "REG_CC_USER", "REG_LABEL",
"REG_DEP_ANTI", "REG_DEP_OUTPUT", "REG_BR_PROB",
"REG_EXEC_COUNT", "REG_NOALIAS", "REG_SAVE_AREA",
- "REG_BR_PRED", "REG_EH_CONTEXT" };
+ "REG_BR_PRED", "REG_EH_CONTEXT",
+ "REG_FRAME_RELATED_EXPR" };
static void dump_and_abort PROTO((int, int, FILE *));
static void read_name PROTO((char *, FILE *));