diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-07-15 14:38:13 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-07-15 14:38:13 +0000 |
commit | 6b8068d653b2fc19de7839d64fc6e19dc420dc30 (patch) | |
tree | 17d6c9dac4cfb44b97a64bf9d87934b9eb70eb03 /gcc/rtl.h | |
parent | 0467e3ebef7688c50fb0141b10c8b5e7e4dbbcdf (diff) | |
download | gcc-6b8068d653b2fc19de7839d64fc6e19dc420dc30.tar.gz |
remove some usage of expr_list from read_rtx
gcc/ChangeLog:
2015-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* gensupport.c (rtx_handle_directive): Adjust.
* read-rtl.c (apply_iterators): Take vector to add rtxs to
instead of expr list rtx.
(add_define_attr_for_define_subst): Likewise.
(add_define_subst_attr): Likewise.
(read_subst_mapping): Likewise.
(read_rtx): Likewise.
* rtl.h (read_rtx): Adjust.
From-SVN: r225833
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 68d0f2a5cf8..f363ed42160 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -3613,7 +3613,7 @@ extern void init_varasm_once (void); extern rtx make_debug_expr_from_rtl (const_rtx); /* In read-rtl.c */ -extern bool read_rtx (const char *, rtx *); +extern bool read_rtx (const char *, vec<rtx> *); /* In alias.c */ extern rtx canon_rtx (rtx); |