diff options
author | Jakub Jelinek <jakub@redhat.com> | 2016-09-23 18:58:40 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2016-09-23 18:58:40 +0200 |
commit | 7de76362e43ddba204611a23b2292d0d6fadd1ab (patch) | |
tree | f1e2282a8b574a5d2e1bced27fcf070605de6dc2 /gcc/haifa-sched.c | |
parent | 3d1ba08f49b0ccf9caba669564190f6b5afc7b6f (diff) | |
download | gcc-7de76362e43ddba204611a23b2292d0d6fadd1ab.zip gcc-7de76362e43ddba204611a23b2292d0d6fadd1ab.tar.gz gcc-7de76362e43ddba204611a23b2292d0d6fadd1ab.tar.bz2 |
sel-sched-ir.c (sel_global_bb_info, [...]): Remove unnecessary = vNULL initialization of file scope vec.
* sel-sched-ir.c (sel_global_bb_info, sel_region_bb_info,
loop_nests, s_i_d, last_added_blocks): Remove unnecessary
= vNULL initialization of file scope vec.
* passes.c (pass_tab, enabled_pass_uid_range_tab,
disabled_pass_uid_range_tab): Likewise.
* haifa-sched.c (sched_luids, h_i_d): Likewise.
* tree-chkp-opt.c (check_infos): Likewise.
* sel-sched.c (vec_av_set, vec_temp_moveop_nops): Likewise.
c/
* c-parser.c (incomplete_record_decls): Remove unnecessary
= vNULL initialization of file scope vec.
cp/
* constexpr.c (call_stack): Remove unnecessary
= vNULL initialization of file scope vec.
From-SVN: r240444
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r-- | gcc/haifa-sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index c58b0ad..0ad080f 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -401,13 +401,13 @@ const struct common_sched_info_def haifa_common_sched_info = }; /* Mapping from instruction UID to its Logical UID. */ -vec<int> sched_luids = vNULL; +vec<int> sched_luids; /* Next LUID to assign to an instruction. */ int sched_max_luid = 1; /* Haifa Instruction Data. */ -vec<haifa_insn_data_def> h_i_d = vNULL; +vec<haifa_insn_data_def> h_i_d; void (* sched_init_only_bb) (basic_block, basic_block); |