diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-28 20:49:58 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-28 20:49:58 +0000 |
commit | 35f8d1c290352d5459f91d2f8a57c3ecadb6168e (patch) | |
tree | f677bb27a1e6ea39bcd5c3b8a8062db4a6ee4309 /gcc/except.c | |
parent | f42ae55ea43144aa64994876f93911f069fea833 (diff) | |
download | gcc-35f8d1c290352d5459f91d2f8a57c3ecadb6168e.tar.gz |
find_first_parameter_load params and return type
gcc/
2014-08-28 David Malcolm <dmalcolm@redhat.com>
* rtl.h (find_first_parameter_load): Strengthen return type and
both params from rtx to rtx_insn *.
* rtlanal.c (find_first_parameter_load): Strengthen return type,
both params and locals "before", "first_set" from rtx to
rtx_insn *. Remove now-redundant cast.
* except.c (sjlj_mark_call_sites): Use NULL rather than NULL_RTX.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214695 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c index 5cdfb680bbf..96341c6ae4e 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1152,7 +1152,7 @@ sjlj_mark_call_sites (void) /* Don't separate a call from it's argument loads. */ before = insn; if (CALL_P (insn)) - before = find_first_parameter_load (insn, NULL_RTX); + before = find_first_parameter_load (insn, NULL); start_sequence (); mem = adjust_address (crtl->eh.sjlj_fc, TYPE_MODE (integer_type_node), |