diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-14 13:50:59 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-14 13:50:59 +0000 |
commit | 017bf97600e60159137a2854a1cdd12c3d7709b5 (patch) | |
tree | 6374101c89422c2793d7f72cac89988f569cf5d4 | |
parent | 58225c75166bdef2a683e19f5a3d89143ad206de (diff) | |
download | gcc-017bf97600e60159137a2854a1cdd12c3d7709b5.tar.gz |
* config/t-darwin (crt3.0): Remove work-around for fixed PR26840.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189479 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/config/t-darwin | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index fbdd11ebf9c..f7acfcba4ae 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2012-07-14 Steven Bosscher <steven@gcc.gnu.org> + + * config/t-darwin (crt3.0): Remove work-around for fixed PR26840. + 2012-06-17 Uros Bizjak <ubizjak@gmail.com> * config/i386/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Use diff --git a/libgcc/config/t-darwin b/libgcc/config/t-darwin index 3365f010225..a69169fa610 100644 --- a/libgcc/config/t-darwin +++ b/libgcc/config/t-darwin @@ -1,7 +1,5 @@ -# Pass -fno-tree-dominator-opts to work around bug 26840. crt3.o: $(srcdir)/config/darwin-crt3.c - $(crt_compile) \ - -fno-tree-dominator-opts $(DARWIN_EXTRA_CRT_BUILD_CFLAGS) -c $< + $(crt_compile) $(DARWIN_EXTRA_CRT_BUILD_CFLAGS) -c $< crttms.o: $(srcdir)/config/darwin-crt-tm.c $(crt_compile) $(DARWIN_EXTRA_CRT_BUILD_CFLAGS) -DSTART -c $< |