summaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1993-11-25 23:10:26 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1993-11-25 23:10:26 +0000
commit0c6fa24fbbb8c8399082814fcbfef31293cd49a2 (patch)
tree38e54cc814a88b832fa1d2820e4c8a0a6f168c33 /gcc/function.h
parent4fbc622f4a3b4614619691a371f59f150bf89355 (diff)
downloadgcc-0c6fa24fbbb8c8399082814fcbfef31293cd49a2.tar.gz
(struct sequence_stack): New field sequence_rtl_expr.
(struct function): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6160 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 153fece8ed4..2760e49e927 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -1,5 +1,5 @@
/* Structure for saving state for a nested function.
- Copyright (C) 1989, 1992 Free Software Foundation, Inc.
+ Copyright (C) 1989, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -42,6 +42,7 @@ struct sequence_stack
{
/* First and last insns in the chain of the saved sequence. */
rtx first, last;
+ tree sequence_rtl_expr;
struct sequence_stack *next;
};
@@ -126,6 +127,7 @@ struct function
int first_label_num;
rtx first_insn;
rtx last_insn;
+ tree sequence_rtl_expr;
struct sequence_stack *sequence_stack;
int cur_insn_uid;
int last_linenum;