aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts.c
diff options
context:
space:
mode:
authorCaroline Tice <ctice@gcc.gnu.org>2005-03-31 06:59:59 -0800
committerCaroline Tice <ctice@gcc.gnu.org>2005-03-31 06:59:59 -0800
commit87c8b4bed31dbbf4708549e10814197cac4d8249 (patch)
treeade60c4c4ed198b0036370e03ebd3a1f64ee4817 /gcc/opts.c
parent68ec3111c0ff30d2dc2f172897379cc891ae180d (diff)
downloadgcc-87c8b4bed31dbbf4708549e10814197cac4d8249.zip
gcc-87c8b4bed31dbbf4708549e10814197cac4d8249.tar.gz
gcc-87c8b4bed31dbbf4708549e10814197cac4d8249.tar.bz2
Fix problems with hot/cold partitioning optimization.
From-SVN: r97322
Diffstat (limited to 'gcc/opts.c')
-rw-r--r--gcc/opts.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/opts.c b/gcc/opts.c
index 3befb1d..bd971c8 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -669,24 +669,11 @@ decode_options (unsigned int argc, const char **argv)
if (flag_exceptions && flag_reorder_blocks_and_partition)
{
- warning
+ inform
("-freorder-blocks-and-partition does not work with exceptions");
flag_reorder_blocks_and_partition = 0;
flag_reorder_blocks = 1;
}
-
- /* The optimization to partition hot and cold basic blocks into
- separate sections of the .o and executable files does not currently
- work correctly with DWARF debugging turned on. Until this is fixed
- we will disable the optimization when DWARF debugging is set. */
-
- if (flag_reorder_blocks_and_partition && write_symbols == DWARF2_DEBUG)
- {
- warning
- ("-freorder-blocks-and-partition does not work with -g (currently)");
- flag_reorder_blocks_and_partition = 0;
- flag_reorder_blocks = 1;
- }
}
/* Handle target- and language-independent options. Return zero to