summaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-26 19:20:16 +0000
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-26 19:20:16 +0000
commitb644802a73197f5dc1297137e58715b8b153984b (patch)
tree58b485026a928d9acd78535ac23a2ccb7b7078c2 /gcc/function.h
parent3e75e92b20bd87818b4eb9916acfab125f6dbb47 (diff)
downloadgcc-b644802a73197f5dc1297137e58715b8b153984b.tar.gz
Strengthen fields in struct sequence_stack and struct emit_status
gcc/ 2014-08-26 David Malcolm <dmalcolm@redhat.com> * function.h (struct sequence_stack): Strengthen fields "first" and "last" from rtx to rtx_insn *. (struct emit_status): Likewise for fields "x_first_insn" and "x_last_insn". * emit-rtl.h (get_insns): Remove now-redundant checked cast. (set_first_insn): Add checked cast. (get_last_insn): Remove now-redundant checked cast. (set_last_insn): Add checked cast. * config/m32c/m32c.c (m32c_leaf_function_p): Strengthen locals "saved_first" and "saved_last" from rtx to rtx_insn *. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214537 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 14d1b2c926a..28a20f34b98 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -34,8 +34,8 @@ along with GCC; see the file COPYING3. If not see
struct GTY(()) sequence_stack {
/* First and last insns in the chain of the saved sequence. */
- rtx first;
- rtx last;
+ rtx_insn *first;
+ rtx_insn *last;
struct sequence_stack *next;
};
@@ -52,8 +52,8 @@ struct GTY(()) emit_status {
start_sequence saves both of these on `sequence_stack' and then starts
a new, nested sequence of insns. */
- rtx x_first_insn;
- rtx x_last_insn;
+ rtx_insn *x_first_insn;
+ rtx_insn *x_last_insn;
/* Stack of pending (incomplete) sequences saved by `start_sequence'.
Each element describes one pending sequence.