diff options
-rw-r--r-- | gcc/ChangeLog | 1 | ||||
-rw-r--r-- | gcc/predict.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0feb0a2..4a1b44c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,6 @@ 2008-09-02 Jan Hubicka <jh@suse.cz> + * predict.c (pass_strip_predict_hints): Avoid bugs dump file. * expmed.c (expand_divmod): Fix test of smod_pow2_cheap and sdiv_pow2_cheap 2008-09-02 H.J. Lu <hongjiu.lu@intel.com> diff --git a/gcc/predict.c b/gcc/predict.c index 1c877ec..b69934f 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -2179,7 +2179,7 @@ struct gimple_opt_pass pass_strip_predict_hints = { { GIMPLE_PASS, - "", /* name */ + NULL, /* name */ NULL, /* gate */ strip_predict_hints, /* execute */ NULL, /* sub */ |