aboutsummaryrefslogtreecommitdiff
path: root/gcc/sel-sched.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2016-09-23 18:58:40 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2016-09-23 18:58:40 +0200
commit7de76362e43ddba204611a23b2292d0d6fadd1ab (patch)
treef1e2282a8b574a5d2e1bced27fcf070605de6dc2 /gcc/sel-sched.c
parent3d1ba08f49b0ccf9caba669564190f6b5afc7b6f (diff)
downloadgcc-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/sel-sched.c')
-rw-r--r--gcc/sel-sched.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sel-sched.c b/gcc/sel-sched.c
index 25a100e..1ed0d4b 100644
--- a/gcc/sel-sched.c
+++ b/gcc/sel-sched.c
@@ -494,7 +494,7 @@ static int max_ws;
static int num_insns_scheduled;
/* A vector of expressions is used to be able to sort them. */
-static vec<expr_t> vec_av_set = vNULL;
+static vec<expr_t> vec_av_set;
/* A vector of vinsns is used to hold temporary lists of vinsns. */
typedef vec<vinsn_t> vinsn_vec_t;
@@ -512,7 +512,7 @@ static vinsn_vec_t vec_target_unavailable_vinsns = vinsn_vec_t ();
/* Vector to store temporary nops inserted in move_op to prevent removal
of empty bbs. */
-static vec<insn_t> vec_temp_moveop_nops = vNULL;
+static vec<insn_t> vec_temp_moveop_nops;
/* These bitmaps record original instructions scheduled on the current
iteration and bookkeeping copies created by them. */