aboutsummaryrefslogtreecommitdiff
path: root/gcc/auto-profile.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2017-05-25 01:12:29 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2017-05-25 01:12:29 +0000
commitd65adabb0d3a14a359be8cdd25ed476513051d54 (patch)
tree6329dfd3fe954ca1f790d54c9836c5b7ad33838c /gcc/auto-profile.c
parentbe136b5c889ca5988c11c7bc5eaffb29ec6249b5 (diff)
auto-profile.c (afdo_propagate): Adjust T const cast to avoid warning.
* auto-profile.c (afdo_propagate): Adjust T const cast to avoid warning. From-SVN: r248444
Diffstat (limited to 'gcc/auto-profile.c')
-rw-r--r--gcc/auto-profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/auto-profile.c b/gcc/auto-profile.c
index 5c6b505d06b..ff5714a6cbc 100644
--- a/gcc/auto-profile.c
+++ b/gcc/auto-profile.c
@@ -1377,7 +1377,7 @@ afdo_propagate (bb_set *annotated_bb, edge_set *annotated_edge)
FOR_ALL_BB_FN (bb, cfun)
{
bb->count = ((basic_block)bb->aux)->count;
- if (is_bb_annotated ((const basic_block)bb->aux, *annotated_bb))
+ if (is_bb_annotated ((basic_block)bb->aux, *annotated_bb))
set_bb_annotated (bb, annotated_bb);
}