diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-08-19 19:57:18 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-08-19 19:57:18 +0000 |
commit | 7a688d527cb2bc88c93946c16951263be80e46e6 (patch) | |
tree | 619c79db3a05fa555193803e388bf13746a72ec3 /gcc/function.h | |
parent | b47aae36689619e02362c972793cdd4f4eeb4e22 (diff) | |
download | gcc-7a688d527cb2bc88c93946c16951263be80e46e6.zip gcc-7a688d527cb2bc88c93946c16951263be80e46e6.tar.gz gcc-7a688d527cb2bc88c93946c16951263be80e46e6.tar.bz2 |
rtl_data.x_parm_birth_insn is an insn
2014-08-19 David Malcolm <dmalcolm@redhat.com>
* function.h (struct rtl_data): Strengthen field
"x_parm_birth_insn" from rtx to rtx_insn *.
* function.c (struct assign_parm_data_all): Strengthen fields
"first_conversion_insn" and "last_conversion_insn" from rtx to
rtx_insn *.
From-SVN: r214191
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.h b/gcc/function.h index a8294b2..0367225 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -303,7 +303,7 @@ struct GTY(()) rtl_data { HOST_WIDE_INT x_frame_offset; /* Insn after which register parms and SAVE_EXPRs are born, if nonopt. */ - rtx x_parm_birth_insn; + rtx_insn *x_parm_birth_insn; /* List of all used temporaries allocated, by level. */ vec<temp_slot_p, va_gc> *x_used_temp_slots; |