diff options
Diffstat (limited to 'gcc/sel-sched.c')
-rw-r--r-- | gcc/sel-sched.c | 4 |
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. */ |