X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libobjc%2FChangeLog;h=fc3b5c0aeba6160db9fcc3f7aac0f80c726ead63;hb=f86bcf84274c3884b7c047a8fba3aab61555e740;hp=b9f87fabec9ff4d2da24a80b48b37db17ea4492c;hpb=1db7b8a843e41f8e4858fbbdaac698e9f4ea371e;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index b9f87fabec9..fc3b5c0aeba 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,63 @@ +2013-04-11 Release Manager + + * GCC 4.7.3 released. + +2012-09-20 Release Manager + + * GCC 4.7.2 released. + +2012-06-14 Release Manager + + * GCC 4.7.1 released. + +2012-03-22 Release Manager + + * GCC 4.7.0 released. + +2011-11-21 Andreas Tobler + + * configure: Regenerate. + +2011-11-02 Rainer Orth + + * Makefile.in (INCLUDES): Add -I$(MULTIBUILDTOP)../libgcc. + * configure.ac (target_thread_file, HAVE_GTHR_DEFAULT): Remove. + * configure: Regenerate. + * config.h.in: Regenerate. + +2011-10-17 Paul Brook + Matthias Klose + + * exception.c (parse_lsda_header): hardcode ttype_encoding for older + ARM EABI toolchains. + (get_ttype_entry) Remove __ARM_EABI_UNWINDER__ variant. + +2011-10-09 Nicola Pero + + PR libobjc/49883 + * init.c (__objc_exec_class): Work around a bug in clang's code + generation. Clang sets the class->info field to values different + from 0x1 or 0x2 (the only allowed values in the traditional GNU + Objective-C runtime ABI) to store some additional information, but + this breaks backwards compatibility. Wipe out all the bits in the + fields other than the first two upon loading a class. + +2011-10-09 Nicola Pero + + * class.c (objc_lookup_class): Added back for compatibility with + clang which seems to emit calls to it. + +2011-10-08 Richard Frith-Macdonald + Nicola Pero + + PR libobjc/50428 + * sendmsg.c (__objc_send_initialize): If a class does not have an + +initialize method, search for an +initialize method in the + superclass and in the ancestor classes and execute the first one + that is found. This makes the GNU runtime behave in the same way + as the Apple/NeXT runtime with respect to +initialize methods and + subclassing. + 2011-08-06 Nicola Pero PR libobjc/50002