aboutsummaryrefslogtreecommitdiff
path: root/gcc/common/config/arm/arm-common.c
diff options
context:
space:
mode:
authorJoey Ye <joey.ye@arm.com>2019-10-10 10:29:47 +0000
committerVidya Praveen <vidyapraveen@arm.com>2020-04-08 20:55:12 +0100
commit13861a80750d118fbdca6006ab175903bacbb7ec (patch)
tree9634adb5332fd10c1f86c0e6a709914c22130745 /gcc/common/config/arm/arm-common.c
parent1a2a0af530cacca88bd65bf55d512aed03646f76 (diff)
Pickup patch rejected in trunk.embedded-9-2020q2embedded-9-2020-q2
2019-09-11 Wilco Dijkstra <wdijkstr@arm.com> PR tree-optimization/80155 * common/config/arm/arm-common.c (arm_option_optimization_table): Enable -fcode-hoisting with -Os.
Diffstat (limited to 'gcc/common/config/arm/arm-common.c')
-rw-r--r--gcc/common/config/arm/arm-common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/common/config/arm/arm-common.c b/gcc/common/config/arm/arm-common.c
index 41a920f6dc9..b0d5fb300bf 100644
--- a/gcc/common/config/arm/arm-common.c
+++ b/gcc/common/config/arm/arm-common.c
@@ -39,6 +39,8 @@ static const struct default_options arm_option_optimization_table[] =
/* Enable section anchors by default at -O1 or higher. */
{ OPT_LEVELS_1_PLUS, OPT_fsection_anchors, NULL, 1 },
{ OPT_LEVELS_1_PLUS, OPT_fsched_pressure, NULL, 1 },
+ /* Enable code hoisting only with -Os. */
+ { OPT_LEVELS_SIZE, OPT_fcode_hoisting, NULL, 1 },
{ OPT_LEVELS_NONE, 0, NULL, 0 }
};