Commit 6bf8c00c by David Malcolm Committed by David Malcolm

config/score/score.c: Use rtx_insn

gcc/
	* config/score/score.c (score_output_mi_thunk): Strengthen local
	"insn" from rtx to rtx_insn *.
	(score_prologue): Likewise.

From-SVN: r214457
parent 775c43d3
2014-08-25 David Malcolm <dmalcolm@redhat.com> 2014-08-25 David Malcolm <dmalcolm@redhat.com>
* config/score/score.c (score_output_mi_thunk): Strengthen local
"insn" from rtx to rtx_insn *.
(score_prologue): Likewise.
2014-08-25 David Malcolm <dmalcolm@redhat.com>
* config/s390/s390-protos.h (s390_match_ccmode): Strengthen param * config/s390/s390-protos.h (s390_match_ccmode): Strengthen param
1 from rtx to rtx_insn *. 1 from rtx to rtx_insn *.
(s390_emit_jump): Likewise for return type. (s390_emit_jump): Likewise for return type.
......
...@@ -453,7 +453,8 @@ score_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED, ...@@ -453,7 +453,8 @@ score_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED,
HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset, HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset,
tree function) tree function)
{ {
rtx this_rtx, temp1, insn, fnaddr; rtx this_rtx, temp1, fnaddr;
rtx_insn *insn;
/* Pretend to be a post-reload pass while generating rtl. */ /* Pretend to be a post-reload pass while generating rtl. */
reload_completed = 1; reload_completed = 1;
...@@ -1477,7 +1478,7 @@ score_prologue (void) ...@@ -1477,7 +1478,7 @@ score_prologue (void)
if (size > 0) if (size > 0)
{ {
rtx insn; rtx_insn *insn;
if (size >= -32768 && size <= 32767) if (size >= -32768 && size <= 32767)
EMIT_PL (emit_insn (gen_add3_insn (stack_pointer_rtx, EMIT_PL (emit_insn (gen_add3_insn (stack_pointer_rtx,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment