From 78d22941b3e3c7a74bc87f6f50ae908338c11c6a Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Tue, 15 Jul 2014 13:13:39 +0000 Subject: opts.c (default_options_table): Disable bit-ccp at -Og. 2014-07-15 Richard Biener * opts.c (default_options_table): Disable bit-ccp at -Og. From-SVN: r212559 --- gcc/ChangeLog | 4 ++++ gcc/opts.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c2e47ba..e9f938f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-07-15 Richard Biener + + * opts.c (default_options_table): Disable bit-ccp at -Og. + 2014-07-14 Jan Hubicka * fold-const.c (fold_checksum_tree): Move checking of diff --git a/gcc/opts.c b/gcc/opts.c index 419a074..5fed6f0 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -440,7 +440,7 @@ static const struct default_options default_options_table[] = { OPT_LEVELS_1_PLUS, OPT_fshrink_wrap, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_fsplit_wide_types, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_ftree_ccp, NULL, 1 }, - { OPT_LEVELS_1_PLUS, OPT_ftree_bit_ccp, NULL, 1 }, + { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_bit_ccp, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_ftree_dce, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_ftree_dominator_opts, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_ftree_dse, NULL, 1 }, -- cgit v1.1