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/tree-chkp-opt.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/tree-chkp-opt.c')
-rw-r--r-- | gcc/tree-chkp-opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-chkp-opt.c b/gcc/tree-chkp-opt.c index 9915245..6cf086c 100644 --- a/gcc/tree-chkp-opt.c +++ b/gcc/tree-chkp-opt.c @@ -84,7 +84,7 @@ static void chkp_collect_value (tree ssa_name, address_t &res); #define chkp_checku_fndecl \ (targetm.builtin_chkp_function (BUILT_IN_CHKP_BNDCU)) -static vec<struct bb_checks, va_heap, vl_ptr> check_infos = vNULL; +static vec<struct bb_checks, va_heap, vl_ptr> check_infos; /* Comparator for pol_item structures I1 and I2 to be used to find items with equal var. Also used for polynomial |