diff options
author | amonakov <amonakov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-18 10:24:31 +0000 |
---|---|---|
committer | amonakov <amonakov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-18 10:24:31 +0000 |
commit | 17435f9627718258b79da406b82d1275978a12f9 (patch) | |
tree | 3826427781b66a9bd0b272c2ec9c49f4592f907a /gcc/sel-sched-ir.c | |
parent | a784610abfc53b50d5d4a4e5f2d46070d2583ee7 (diff) | |
download | gcc-17435f9627718258b79da406b82d1275978a12f9.tar.gz |
PR middle-end/46518
* sel-sched-ir.c (init_expr): Use the correct type for
target_available.
* sel-sched.c (fill_vec_av_set): Use explicitly signed char type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166898 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sel-sched-ir.c')
-rw-r--r-- | gcc/sel-sched-ir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sel-sched-ir.c b/gcc/sel-sched-ir.c index e169276974b..71c02c429b4 100644 --- a/gcc/sel-sched-ir.c +++ b/gcc/sel-sched-ir.c @@ -1595,7 +1595,7 @@ static void init_expr (expr_t expr, vinsn_t vi, int spec, int use, int priority, int sched_times, int orig_bb_index, ds_t spec_done_ds, ds_t spec_to_check_ds, int orig_sched_cycle, - VEC(expr_history_def, heap) *history, bool target_available, + VEC(expr_history_def, heap) *history, signed char target_available, bool was_substituted, bool was_renamed, bool needs_spec_check_p, bool cant_move) { |