diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-25 21:00:03 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-25 21:00:03 +0000 |
commit | 2007d20f2f233f642e76d60039a96651dff52294 (patch) | |
tree | 7d4a0fc14dc4c6f333a96ae37aec7cfecb7962cb /gcc/output.h | |
parent | 4f124fa955838965048df4aaffabfe693c5861ac (diff) | |
download | gcc-2007d20f2f233f642e76d60039a96651dff52294.tar.gz |
final_start_function takes an rtx_insn
gcc/
* output.h (final_start_function): Strengthen param 1 from rtx to
rtx_insn *.
* final.c (final_start_function): Likewise, renaming back from
"uncast_first" to "first", and dropping the checked cast from rtx
to rtx_insn *.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214480 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/output.h b/gcc/output.h index b4c8c479dcc..a3a5d78e8a2 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -57,7 +57,7 @@ extern void shorten_branches (rtx_insn *); for the new function. The label for the function and associated assembler pseudo-ops have already been output in `assemble_start_function'. */ -extern void final_start_function (rtx, FILE *, int); +extern void final_start_function (rtx_insn *, FILE *, int); /* Output assembler code for the end of a function. For clarity, args are same as those of `final_start_function' |