Commit 473cec55 by Ian Bolton Committed by Ian Bolton

Enable REE pass by default for AArch64 at O2 or higher

From-SVN: r198424
parent a6f30e66
2013-04-29 Ian Bolton <ian.bolton@arm.com>
* common/config/aarch64/aarch64-common.c: Enable REE pass at O2
or higher by default.
2013-04-29 Richard Biener <rguenther@suse.de> 2013-04-29 Richard Biener <rguenther@suse.de>
PR middle-end/57075 PR middle-end/57075
......
...@@ -44,6 +44,8 @@ static const struct default_options aarch_option_optimization_table[] = ...@@ -44,6 +44,8 @@ static const struct default_options aarch_option_optimization_table[] =
{ {
/* Enable section anchors by default at -O1 or higher. */ /* Enable section anchors by default at -O1 or higher. */
{ OPT_LEVELS_1_PLUS, OPT_fsection_anchors, NULL, 1 }, { OPT_LEVELS_1_PLUS, OPT_fsection_anchors, NULL, 1 },
/* Enable redundant extension instructions removal at -O2 and higher. */
{ OPT_LEVELS_2_PLUS, OPT_free, NULL, 1 },
{ OPT_LEVELS_NONE, 0, NULL, 0 } { OPT_LEVELS_NONE, 0, NULL, 0 }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment