(struct sequence_stack): New field sequence_rtl_expr.
authorRichard Kenner <kenner@gcc.gnu.org>
Thu, 25 Nov 1993 23:10:26 +0000 (18:10 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 25 Nov 1993 23:10:26 +0000 (18:10 -0500)
(struct function): Likewise.

From-SVN: r6160

gcc/function.h

index 153fece8ed40e3aa827e1fe39f1603ae9c9dc5e7..2760e49e927a318542aa645cb9e7291c0b8cbe89 100644 (file)
@@ -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;