diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-28 19:01:18 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-28 19:01:18 +0000 |
commit | d093d0404d8b1ccad2bff5572e1d2e137fb68ec8 (patch) | |
tree | 5b991e76e07626403633f5e75837df8f03551875 /gcc/function.h | |
parent | f17e3fff10bfdf0a8d896931cbc31d1553c6b25f (diff) | |
download | gcc-d093d0404d8b1ccad2bff5572e1d2e137fb68ec8.tar.gz |
Strengthen return_label and naked_return_label to rtx_code_label *
gcc/
2014-08-28 David Malcolm <dmalcolm@redhat.com>
* function.h (struct rtl_data): Strengthen fields "x_return_label"
and "x_naked_return_label" from rtx to rtx_code_label *.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.h b/gcc/function.h index 1f8da7a6a66..c2e0366b5f6 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -271,12 +271,12 @@ struct GTY(()) rtl_data { /* Label that will go on function epilogue. Jumping to this label serves as a "return" instruction on machines which require execution of the epilogue on all returns. */ - rtx x_return_label; + rtx_code_label *x_return_label; /* Label that will go on the end of function epilogue. Jumping to this label serves as a "naked return" instruction on machines which require execution of the epilogue on all returns. */ - rtx x_naked_return_label; + rtx_code_label *x_naked_return_label; /* List (chain of EXPR_LISTs) of all stack slots in this function. Made for the sake of unshare_all_rtl. */ |