aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/rs6000
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2008-09-04 23:32:05 +0000
committerJanis Johnson <janis@gcc.gnu.org>2008-09-04 23:32:05 +0000
commit2f3b0d4ad6781d67bfc8d1f225916e596dc89419 (patch)
treeead5638c078e93a51ba5f7e4259ea3cd5944aa2a /gcc/config/rs6000
parent640cbe76c769ea9737e671d32e51b37693848ebf (diff)
downloadgcc-2f3b0d4ad6781d67bfc8d1f225916e596dc89419.zip
gcc-2f3b0d4ad6781d67bfc8d1f225916e596dc89419.tar.gz
gcc-2f3b0d4ad6781d67bfc8d1f225916e596dc89419.tar.bz2
re PR other/32783 (gcc-4_3-trunk/libiberty/configure - for ac_func gettimeofday ... gettimeofday - tests twice)
2008-09-04 Samuel Tardieu <sam@rfc1149.net> PR target/32783 * config/rs6000/rs6000.c (optimization_options): Remove check of flag_toplevel_order. From-SVN: r140013
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r--gcc/config/rs6000/rs6000.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 934ea8f..cdeb1c9 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -2179,11 +2179,8 @@ optimization_options (int level ATTRIBUTE_UNUSED, int size ATTRIBUTE_UNUSED)
/* Enable section anchors by default.
Skip section anchors for Objective C and Objective C++
- until front-ends fixed.
- Do not enable section anchors without toplevel reorder. */
- if (!TARGET_MACHO
- && lang_hooks.name[4] != 'O'
- && flag_toplevel_reorder != 0)
+ until front-ends fixed. */
+ if (!TARGET_MACHO && lang_hooks.name[4] != 'O')
flag_section_anchors = 2;
}