http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46916

--- Comment #50 from Jack Howarth <howarth at nitro dot med.uc.edu> 2010-12-15 
01:18:18 UTC ---
I noticed that the proposed patch at
http://gcc.gnu.org/ml/gcc-patches/2010-12/msg01129.html also seems to have an
error here...

*************** machopic_select_section (tree decl,
*** 1276,1282 ****
                            node->only_called_at_startup,
                            node->only_called_at_exit);
      if (!base_section)
!           base_section = darwin_text_section (reloc, weak);
        }
        break;

--- 1271,1277 ----
                            node->only_called_at_startup,
                            node->only_called_at_exit);
      if (!base_section)
!           base_section = darwin_text_section (reloc);
        }
        break;


which I assume should have be a change to...

!           base_section = darwin_text_section (weak);

Reply via email to