diff options
author | Jan Hubicka <jh@suse.cz> | 2008-09-02 20:10:54 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2008-09-02 18:10:54 +0000 |
commit | edcfeaeebe82ae3b2c6cdc8cf70d08fc4f5a34f5 (patch) | |
tree | 0e47568357ed370d46b6146e9c331a0de0d28166 /gcc | |
parent | 0d77cc6c17991d65b145c83c385c8eb01a6bd1ca (diff) | |
download | gcc-edcfeaeebe82ae3b2c6cdc8cf70d08fc4f5a34f5.zip gcc-edcfeaeebe82ae3b2c6cdc8cf70d08fc4f5a34f5.tar.gz gcc-edcfeaeebe82ae3b2c6cdc8cf70d08fc4f5a34f5.tar.bz2 |
* predict.c (pass_strip_predict_hints): Avoid bugs dump file.
From-SVN: r139898
Diffstat (limited to 'gcc')
-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 */ |