diff options
author | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-04 23:32:05 +0000 |
---|---|---|
committer | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-04 23:32:05 +0000 |
commit | 11d2345d61941c6c038a4606c34278dc20d49c6f (patch) | |
tree | ead5638c078e93a51ba5f7e4259ea3cd5944aa2a /gcc | |
parent | 5df8b36800471490ea5504b2ebb5e5151dd938fe (diff) | |
download | gcc-11d2345d61941c6c038a4606c34278dc20d49c6f.tar.gz |
2008-09-04 Samuel Tardieu <sam@rfc1149.net>
PR target/32783
* config/rs6000/rs6000.c (optimization_options): Remove check of
flag_toplevel_order.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140013 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 531589d01b1..1a18657bbfe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-09-04 Samuel Tardieu <sam@rfc1149.net> + + PR target/32783 + * config/rs6000/rs6000.c (optimization_options): Remove check of + flag_toplevel_order. + 2008-09-04 Adam Nemet <anemet@caviumnetworks.com> * config/mips/mips.h (ISA_HAS_SEQ_SNE): New macro. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 934ea8f6435..cdeb1c9c500 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; } |