diff mbox

ChangeLogs: remove trailing white space; normalize indentation

Message ID 877hc8o9qd.fsf@rho.meyering.net
State New
Headers show

Commit Message

Jim Meyering March 9, 2011, 10:43 a.m. UTC
No one objected, so here's a proposed patch to normalize
active ChangeLog files.  Note that it's particularly useful to
do this to the active ones -- rather than also on the ChangeLog-YYYY
and other old ones -- because they're in active use, and inconsistency
in those files is far more likely to make a real difference than in
a file that is no longer being modified.

However, if there's interest, I can easily normalize all of them.


From 5d633fe89b1f9dc62fe8df98c945194ec66e5a44 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering@redhat.com>
Date: Wed, 9 Mar 2011 11:25:39 +0100
Subject: [PATCH] ChangeLogs: remove trailing white space; normalize indentation

Remove all trailing white space in active ChangeLog files, and
indent using TAB consistently, not 8 spaces (or 7, or space-TAB).
However, don't change those in libjava/, zlib/ or intl/.

Do that by running these commands:
f=$(git ls-files |grep '\bChangeLog$' |grep -Ev '(libjava|zlib|intl)/')
perl -pi -e \
  's/[ \t]+$//;s/^ {7,8}/\t/;s/^ {1,6}\t/\t/' $(echo $f)
---
 ChangeLog                    |   18 ++--
 boehm-gc/ChangeLog           |   40 ++++----
 contrib/ChangeLog            |   14 ++--
 contrib/reghunt/ChangeLog    |    2 +-
 fixincludes/ChangeLog        |   14 ++--
 gcc/ChangeLog                |    8 +-
 gcc/ada/ChangeLog            |    4 +-
 gcc/c-family/ChangeLog       |   46 +++++-----
 gcc/cp/ChangeLog             |    6 +-
 gcc/java/ChangeLog           |  122 ++++++++++++------------
 gcc/lto/ChangeLog            |  152 +++++++++++++++---------------
 gcc/objc/ChangeLog           |  208 +++++++++++++++++++++---------------------
 gcc/objcp/ChangeLog          |   18 ++--
 gcc/po/ChangeLog             |    4 +-
 include/ChangeLog            |   28 +++---
 libada/ChangeLog             |   12 +-
 libcpp/ChangeLog             |   12 +-
 libdecnumber/ChangeLog       |   20 ++--
 libffi/ChangeLog             |  136 ++++++++++++++--------------
 libgcc/ChangeLog             |    2 +-
 libgomp/ChangeLog            |    6 +-
 libiberty/ChangeLog          |   28 +++---
 libmudflap/ChangeLog         |    2 +-
 libobjc/ChangeLog            |  162 ++++++++++++++++----------------
 libssp/ChangeLog             |    4 +-
 libstdc++-v3/ChangeLog       |    2 +-
 lto-plugin/ChangeLog         |   14 ++--
 maintainer-scripts/ChangeLog |    6 +-
 28 files changed, 545 insertions(+), 545 deletions(-)
diff mbox

Patch

diff --git a/ChangeLog b/ChangeLog
index 2c7d208..b3536b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -829,11 +829,11 @@ 
 	* configure: Regenerate.

 2010-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
-            Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+	    Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>

 	PR bootstrap/42424
 	* configure.ac: Include libtool m4 files.
-        (_LT_CHECK_OBJDIR): Call it.
+	(_LT_CHECK_OBJDIR): Call it.
 	(extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
 	gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.

@@ -974,7 +974,7 @@ 

 2009-10-26  Johannes Singler  <singler@kit.edu>

-        * MAINTAINERS (Write After Approval): Update my e-mail address.
+	* MAINTAINERS (Write After Approval): Update my e-mail address.

 2009-10-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

@@ -1010,7 +1010,7 @@ 
 2009-10-07  Rafael Avila de Espindola  <espindola@google.com>

 	* MAINTAINERS: Change my email address. Change plugi-in to plugin.
-	
+
 2009-10-07  Richard Guenther  <rguenther@suse.de>

 	* MAINTAINERS (LTO): List Diego Novillo, Rafael Avila de Espindola,
@@ -1262,7 +1262,7 @@ 

 	* configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
 	* configure: Regenerate.
-	
+
 2009-07-28  Rask Ingemann Lambertsen  <ccc94453@vip.cybercity.dk>

 	* MAINTAINERS (Write After Approval): Update my e-mail address.
@@ -1327,7 +1327,7 @@ 

 2009-06-09  Ghassan Shobaki  <ghassan.shobaki@amd.com>

-        * MAINTAINERS: Added my name to the write-after-approval list
+	* MAINTAINERS: Added my name to the write-after-approval list

 2009-06-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

@@ -1337,8 +1337,8 @@ 
 2009-06-03  Jerome Guitton  <guitton@adacore.com>
 	    Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

-        * Makefile.tpl (all): Avoid a trailing backslash.
-        * Makefile.in: Regenerate.
+	* Makefile.tpl (all): Avoid a trailing backslash.
+	* Makefile.in: Regenerate.

 2009-06-03  Ben Elliston  <bje@au.ibm.com>

@@ -1554,7 +1554,7 @@ 
 2009-03-11  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* MAINTAINERS: Update e-mail address.
-	
+
 2009-03-11  Dorit Nuzman  <dorit@il.ibm.com>

 	* MAINTAINERS: Remove myself as auto-vectorizer maintainer.
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index 3e4a6fa..8085b22 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -162,7 +162,7 @@ 
 	(GC_register_dynamic_libraries) [CYGWIN32]: Define as on other
 	windows hosts.

-2009-12-09  Matthias Klose  <doko@ubuntu.com> 
+2009-12-09  Matthias Klose  <doko@ubuntu.com>

 	* include/private/gc_locks.h: For __ARM_EABI__ define
 	GC_test_and_set  GC_clear to use the atomic builtins.
@@ -260,18 +260,18 @@ 
 	* configure: Regenerate.

 2008-09-26  Peter O'Gorman  <pogma@thewrittenword.com>
-            Steve Ellcey  <sje@cup.hp.com>
+	    Steve Ellcey  <sje@cup.hp.com>

 	* configure: Regenerate for new libtool.
 	* Makefile.in: Ditto.
 	* include/Makefile.in: Ditto.
 	* aclocal.m4: Ditto.

-2008-07-18  Matthias Klose  <doko@ubuntu.com> 
- 
-	* configure.ac (AC_CONFIG_FILES): Add threads.mk. 
-	* threads.mk.in: New. 
-	* Makefile.in, configure: Regenerate. 
+2008-07-18  Matthias Klose  <doko@ubuntu.com>
+
+	* configure.ac (AC_CONFIG_FILES): Add threads.mk.
+	* threads.mk.in: New.
+	* Makefile.in, configure: Regenerate.

 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

@@ -339,7 +339,7 @@ 
 	* Makefile.am (libgcjgc_la_SOURCES): Remove solaris_pthreads.c and
 	solaris_threads.c.
 	(gctest_LDADD): Use THREADLIBS instead of THREADDLLIBS.
-	* Makefile.in: Regenerate.	 
+	* Makefile.in: Regenerate.
 	* solaris_pthreads.c: Remove.
 	* solaris_threads.c: Remove.

@@ -473,7 +473,7 @@ 
 	* darwin_stop_world.c: Likewise.
 	* include/private/gcconfig.h: Likewise.
 	* connfigure: Regenerate.
-	
+
 2006-09-26  Jack Howarth  <howarth@bromo.med.uc.edu>

 	PR target/29180
@@ -484,7 +484,7 @@ 
 	* os_dep.c: Port to Darwin/i386
 	* darwin_stop_world.c: Likewise
 	* include/private/gcconfig.h: Likewise
-	
+
 2006-06-07  Petr Salinger  <Petr.Salinger@seznam.cz>

 	* configure.ac: add support for GNU/kFreeBSD, accepted by upstream
@@ -502,7 +502,7 @@ 
 	Solaris.

 2006-08-21  Bryce McKinlay  <mckinlay@redhat.com>
-	
+
 	PR libgcj/13212:
 	* configure.ac: Check for pthread_getattr_np(). Remove
 	GC_PTHREAD_SYM_VERSION detection.
@@ -515,7 +515,7 @@ 
 	(pthread_create_, constr): Removed.
 	(pthread_create): Don't rename.
 	* include/gc_ext_config.h.in: Rebuilt.
-	* include/gc_pthread_redirects.h (pthread_create): Define 
+	* include/gc_pthread_redirects.h (pthread_create): Define
 	unconditionally.
 	* include/gc_config.h.in: Rebuilt.
 	* configure: Rebuilt.
@@ -533,7 +533,7 @@ 
 	flag.

 2006-06-20  Ranjit Mathew  <rmathew@gcc.gnu.org>
-	
+
 	Backport Windows 9x/ME VirtualQuery() fix from GC 6.7.
 	* os_dep.c (GC_wnt): Define.
 	(GC_init_win32): Set GC_wnt.
@@ -556,7 +556,7 @@ 

 2006-05-24  Carlos O'Donell  <carlos@codesourcery.com>

-	* Makefile.am: Add install-html target. 
+	* Makefile.am: Add install-html target.
 	* Makefile.in: Regenerate.
 	* aclocal.m4: Regenerate.
 	* include/Makefile.in: Regenerate.
@@ -718,7 +718,7 @@ 

 2005-01-01  Bryce McKinlay  <mckinlay@redhat.com>

-	* configure.ac (AC_CONFIG_HEADERS): Build both include/gc_config.h 
+	* configure.ac (AC_CONFIG_HEADERS): Build both include/gc_config.h
 	and include/gc_ext_config.h.
 	* include/gc_ext_config.h: New file. Define only THREAD_LOCAL_ALLOC.
 	* include/gc.h: Undef PACKAGE_* before including gc_config.h.
@@ -743,7 +743,7 @@ 
 2004-11-26  Bryce McKinlay  <mckinlay@redhat.com>

 	Fix "PACKAGE_NAME redefined" errors.
-	* configure.ac (AC_CONFIG_HEADERS): Build both include/config.h 
+	* configure.ac (AC_CONFIG_HEADERS): Build both include/config.h
 	and include/gc_config.h.
 	* configure: Regenerated.
 	* include/gc_config.h.in: No longer auto-generated. Define only the
@@ -807,7 +807,7 @@ 
 	GC_print_back_height): Move delarations to header file.
 	* configure.ac: rename --enable-full-debug to --enable-gc-debug.
 	* configure: Regenerate.
-	
+
 2004-08-23  Hans Boehm  <Hans.Boehm@hp.com>

 	* aix_irix_threads.c: Move _THREADS checks after gc_priv.h include.
@@ -824,7 +824,7 @@ 

 2004-08-16  Bryce McKinlay  <mckinlay@redhat.com>

-	* specific.c: Check GC_LINUX_THREADS before including 
+	* specific.c: Check GC_LINUX_THREADS before including
 	private/specific.h. From Richard Earnshaw.

 2004-08-16  Nathanael Nerode  <neroden@gcc.gnu.org>
@@ -860,7 +860,7 @@ 
 	* configure: Rebuilt.
 	* gcj_mlc.c: Check #ifdef GC_GCJ_SUPPORT after including headers.
 	* specific.c: Check #ifdef GC_LINUX_THREADS after including headers.
-	* include/gc_config_macros.h: Remove backward-compatibility 
+	* include/gc_config_macros.h: Remove backward-compatibility
 	redefinitions of GC_ names.
 	* include/gc.h: Include <gc_config.h>.

@@ -901,7 +901,7 @@ 

 2004-04-25  Andreas Jaeger  <aj@suse.de>

-        * mark.c (GC_mark_from): Use pointer as prefetch argument.
+	* mark.c (GC_mark_from): Use pointer as prefetch argument.

 2004-04-06  H.J. Lu  <hongjiu.lu@intel.com>

diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 014c478..3a667ee 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -62,8 +62,8 @@ 

 2010-07-02  Iain Sandoe  <iains@gcc.gnu.org>

-       * compare-debug (Darwin): Remove '-x' flag from ld-based object
-       stripping.  Add a comment as to why we do it this way.
+	* compare-debug (Darwin): Remove '-x' flag from ld-based object
+	stripping.  Add a comment as to why we do it this way.

 2010-06-20  Alexandre Oliva  <aoliva@redhat.com>

@@ -146,7 +146,7 @@ 
 2009-08-18  H.J. Lu  <hongjiu.lu@intel.com>

 	PR testsuite/40704
-	* test_summary: Filter out "\r". 
+	* test_summary: Filter out "\r".

 2009-06-02  Alexandre Oliva  <aoliva@redhat.com>

@@ -219,7 +219,7 @@ 
 2008-03-10  Janis Johnson  <janis187@us.ibm.com>

 	* patch_tester.sh (initialization): Initialize svnpatch and stop.
-	(usage): Add -svnpath and -stop.	
+	(usage): Add -svnpath and -stop.
 	(makedir): New.
 	(argument handling): Process -stop and -svnpath.
 	(setup code): Use makedir, error out if initial svn checkout fails.
@@ -290,7 +290,7 @@ 

 	* texi2pod.pl: Handle @asis.
 	(postprocess): Move @gccoptlist{} after all formatting commands.
-	
+
 2007-10-01  Alexandre Oliva  <aoliva@redhat.com>

 	* compare-debug: Avoid spurious errors when .stripped files
@@ -452,14 +452,14 @@ 

 2005-10-28  Daniel Berlin  <dberlin@dberlin.org>
 	    Ben Elliston <bje@au1.ibm.com>
-	
+
 	* gcc_update: Update for svn.
 	* newcvsroot: Ditto.
 	* gcc_build: Ditto.

 2005-10-21  Mark Mitchell  <mark@codesourcery.com>

-	* texi2pod.pl: Substitue for @value even when part of @include. 
+	* texi2pod.pl: Substitue for @value even when part of @include.

 2005-10-21  Bob Wilson  <bob.wilson@acm.org>

diff --git a/contrib/reghunt/ChangeLog b/contrib/reghunt/ChangeLog
index af27b8f..8c8fddf 100644
--- a/contrib/reghunt/ChangeLog
+++ b/contrib/reghunt/ChangeLog
@@ -88,7 +88,7 @@ 
 	use DATE for the date command.
 	* reg_periodic: Ditto.

-2003-03-27  Janis Johnson  <janis187@us.ibm.com> 
+2003-03-27  Janis Johnson  <janis187@us.ibm.com>
 	* README: New file.
 	* reg_search: New file.
 	* reg_periodic: New file.
diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog
index c34189a..399cef7 100644
--- a/fixincludes/ChangeLog
+++ b/fixincludes/ChangeLog
@@ -227,7 +227,7 @@ 

 	* inclhack.def (hpux_imaginary_i): Remove spaces.
 	* fixincl.x: Regenerate.
-	* tests/base/stdint.h: Update AIX fixes. 
+	* tests/base/stdint.h: Update AIX fixes.
 	* tests/base/complex.h: Change HPUX_IMAGINARY_I_CHECK fix.

 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
@@ -259,7 +259,7 @@ 

 	* inclhack.def (aix_complex): New fix.
 	* fixincl.x: Regenerate.
-	
+
 2009-08-01  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>

 	* inclhack.def (hpux_inttype_int_least8_t): Also apply on hpux10*.
@@ -690,8 +690,8 @@ 
 	* fixincl.x: Regenerate.
 	* tests/base/math.h: Update.

-2007-01-05  Bruce Korb <bkorb@gnu.org>, 
-            Daniel Franke <franke.daniel@gmail.com>
+2007-01-05  Bruce Korb <bkorb@gnu.org>,
+	    Daniel Franke <franke.daniel@gmail.com>

 	PR target/30008
 	* fixincl.tpl (List): separate file name patterns with a NUL byte instead
@@ -707,7 +707,7 @@ 

 	* fixincludes/mkfixinc.sh: Add "*-*-vxworks*" to the list of
 	targets for which a no-op fixer is appropriate.
-	
+
 2006-11-07  Richard Guenther  <rguenther@suse.de>

 	* inclhack.def (glibc_c99_inline_2): Adjust for glibc 2.3
@@ -793,7 +793,7 @@ 

 	* inclhack.def (solaris_once_init_1): New.
 	* tests/base/pthread.h: Adjust for new fix.
-	
+
 	* fixincl.x: Regenerate.

 2006-07-17  Roger Sayle  <roger@eyesopen.com>
@@ -907,7 +907,7 @@ 
 	* fixincl.c: Don't include <sys/wait.h> if SEPARATE_FIX_PROC.

 2005-05-19  Eric Botcazou  <ebotcazou@libertysurf.fr>
-            Joseph S. Myers  <joseph@codesourcery.com>
+	    Joseph S. Myers  <joseph@codesourcery.com>

 	PR target/19933
 	PR target/21315
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a92e4a6..86a8a03 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -15,10 +15,10 @@ 

 2011-03-08  Georg-Johann Lay  <avr@gjlay.de>

-       * config/avr/avr.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): Remove.
-       * config/avr/avr.c (TARGET_REGISTER_MOVE_COST,
-       TARGET_MEMORY_MOVE_COST): Define.
-       (avr_register_move_cost, avr_memory_move_cost): New Functions.
+	* config/avr/avr.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): Remove.
+	* config/avr/avr.c (TARGET_REGISTER_MOVE_COST,
+	TARGET_MEMORY_MOVE_COST): Define.
+	(avr_register_move_cost, avr_memory_move_cost): New Functions.

 2011-03-08  Jakub Jelinek  <jakub@redhat.com>

diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index defad83..c3c5199 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -39,7 +39,7 @@ 
 	dependency.

 2011-01-04  Pascal Obry  <obry@adacore.com>
-            Eric Botcazou  <ebotcazou@adacore.com>
+	    Eric Botcazou  <ebotcazou@adacore.com>

 	* gcc-interface/decl.c: Disable Stdcall convention handling for 64-bit.

@@ -55,7 +55,7 @@ 
 	the CICO mechanism.

 2011-01-04  Olivier Hainque  <hainque@adacore.com>
-            Eric Botcazou  <ebotcazou@adacore.com>
+	    Eric Botcazou  <ebotcazou@adacore.com>

 	* gcc-interface/trans.c (BLOCK_SOURCE_END_LOCATION): Provide default.
 	(set_end_locus_from_node): New function.
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 60fc08f..5842343 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -69,7 +69,7 @@ 
 2010-12-18  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* c-objc.h (objc_maybe_warn_exceptions): New.
-	* stub-objc.c (objc_maybe_warn_exceptions): New.	
+	* stub-objc.c (objc_maybe_warn_exceptions): New.

 2010-12-10  Nathan Froyd  <froydnj@codesourcery.com>

@@ -96,7 +96,7 @@ 
 	* stub-objc.c (objc_finish_function): New.
 	(objc_non_volatilized_type): Removed.
 	(objc_type_quals_match): Removed.
-	
+
 2010-11-30  Joseph Myers  <joseph@codesourcery.com>

 	* c-common.h (parse_optimize_options): Declare.
@@ -173,7 +173,7 @@ 

 	* c-common.h (objc_declare_protocols): Added additional argument.
 	* stub-objc.c (objc_declare_protocol): Same change.
-	
+
 2010-11-18  Nathan Froyd  <froydnj@codesourcery.com>

 	PR c/33193
@@ -253,7 +253,7 @@ 
 	* c-format.c (format_type): New type gcc_objc_string_format_type.
 	(valid_stringptr_type_p): New.
 	(handle_format_arg_attribute): Use valid_stringptr_type_p ().
-	(check_format_string): Pass expected type, use 
+	(check_format_string): Pass expected type, use
 	valid_stringptr_type_p (), check that the format string types are
 	consistent with the format specification.
 	(decode_format_attr): Warn if NSString is used outside objective-c.
@@ -270,7 +270,7 @@ 

 2010-11-04  Nicola Pero  <nicola.pero@meta-innovation.com>

-	Fixed using the Objective-C 2.0 dot-syntax with class names.	
+	Fixed using the Objective-C 2.0 dot-syntax with class names.
 	* c-common.h (objc_build_class_component_ref): New.
 	* stub-objc.c (objc_build_class_component_ref): New.

@@ -311,7 +311,7 @@ 
 	objc_maybe_build_component_ref.
 	(objc_build_setter_call): Renamed to objc_maybe_build_modify_expr.
 	(objc_is_property_ref): New.
-	
+
 2010-10-29  Arnaud Charlet  <charlet@adacore.com>
 	    Matthew Gingell  <gingell@adacore.com>

@@ -340,13 +340,13 @@ 
 	* stub-objc.c (objc_add_property_declaration): Added additional
 	arguments.
 	(objc_set_property_attr): Removed.
-	
+
 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* c-common.h (objc_add_property_variable): Renamed to
 	objc_add_property_declaration.  Added location argument.
 	* stub-objc.c (objc_add_property_variable): Same change.
-	
+
 2010-10-23  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* c-common.h (objc_maybe_printable_name): New.
@@ -375,7 +375,7 @@ 
 	(objc_write_global_declarations): New.
 	* c-opts.c (c_common_parse_file): Do not call finish_file.
 	* stub-objc.c (objc_write_global_declarations): New.
-	
+
 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Implemented parsing @synthesize and @dynamic for
@@ -386,7 +386,7 @@ 
 	* c-common.c (c_common_reswords): Add synthesize and dynamic.
 	* stub-objc.c (objc_add_synthesize_declaration): New.
 	(objc_add_dynamic_declaration): New.
-	
+
 2010-10-18  Michael Meissner  <meissner@linux.vnet.ibm.com>

 	PR target/46041
@@ -401,7 +401,7 @@ 

 	2005-11-08  Fariborz Jahanian <fjahanian@apple.com>

-        Radar 4330422
+	Radar 4330422
 	* c-common.h (objc_non_volatilized_type): New declaration
 	* stub-objc.c (objc_non_volatilized_type): New stub.

@@ -411,7 +411,7 @@ 

 	2006-03-27 Fariborz Jahanian <fjahanian@apple.com>

-        Radar 4133425
+	Radar 4133425
 	* c-common.h (objc_diagnose_private_ivar): New decl.
 	* stub-objc.c (objc_diagnose_private_ivar): New stub.

@@ -511,7 +511,7 @@ 
 	objective-c keywords.
 	(objc_set_method_opt): New declaration.
 	* stub-objc.c (objc_set_method_opt): New stub.
-	
+
 2010-09-30  Joseph Myers  <joseph@codesourcery.com>

 	* c-common.c (handle_optimize_attribute): Pass &global_options to
@@ -529,8 +529,8 @@ 

 2010-09-29  Nicola Pero  <nicola.pero@meta-innovation.com>

-	Merge from 'apple/trunk' branch on FSF servers.	
-	
+	Merge from 'apple/trunk' branch on FSF servers.
+
 	2005-10-04  Fariborz Jahanian <fjahanian@apple.com>

 	Radar 4281748
@@ -562,7 +562,7 @@ 

 2010-09-28  Iain Sandoe  <iains@gcc.gnu.org>

-	* c-common.h (objc_add_method_declaration): Adjust prototype to 
+	* c-common.h (objc_add_method_declaration): Adjust prototype to
 	include attributes.
 	(objc_start_method_definition): Likewise.
 	(objc_build_keyword_decl): Likewise.
@@ -586,11 +586,11 @@ 

 2010-09-27  Nicola Pero  <nicola.pero@meta-innovation.com>

-	Merge from 'apple/trunk' branch on FSF servers.	
+	Merge from 'apple/trunk' branch on FSF servers.

 	2005-12-15  Fariborz Jahanian <fjahanian@apple.com>

-	Radar 4229905	
+	Radar 4229905
 	* c-common.h (objc_have_common_type): New declaration.
 	* stub-objc.c (objc_have_common_type): New stub.

@@ -598,7 +598,7 @@ 

 	Radar 4154928
 	* c-common.h (objc_common_type): New prototype.
-	* stub-objc.c (objc_common_type): New stub.	
+	* stub-objc.c (objc_common_type): New stub.

 2010-09-24  Jan Hubicka  <jh@suse.cz>

@@ -844,8 +844,8 @@ 

 2010-06-24  Andi Kleen  <ak@linux.intel.com>

-        * c-common.c (warn_for_omitted_condop): New.
-        * c-common.h (warn_for_omitted_condop): Add prototype.
+	* c-common.c (warn_for_omitted_condop): New.
+	* c-common.h (warn_for_omitted_condop): Add prototype.

 2010-06-21  Joseph Myers  <joseph@codesourcery.com>

@@ -891,7 +891,7 @@ 

 2010-06-11  Manuel López-Ibáñez  <manu@gcc.gnu.org>

-        * c-common.c (conversion_warning): Warn at expression
+	* c-common.c (conversion_warning): Warn at expression
 	location.

 2010-06-10  Joseph Myers  <joseph@codesourcery.com>
@@ -957,7 +957,7 @@ 

 2010-06-05  Steven Bosscher  <steven@gcc.gnu.org>

-	* c-common.c: Moved to here from parent directory. 
+	* c-common.c: Moved to here from parent directory.
 	* c-common.def: Likewise.
 	* c-common.h: Likewise.
 	* c-cppbuiltin.c: Likewise.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 68f04e1..77bc2c1 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -224,9 +224,9 @@ 

 	PR c++/47208
 	* pt.c (do_auto_deduction): Do not mention error_mark_node in
-    	diagnostics.
+	diagnostics.
 	* semantics.c (finish_id_expression): Do not pass erroneous decl
-    	to decl_constant_var_p.
+	to decl_constant_var_p.

 2011-02-17  Jakub Jelinek  <jakub@redhat.com>

@@ -244,7 +244,7 @@ 

 	PR c++/47326
 	* pt.c (tsubst_copy)<case SIZEOF_EXPR>: Ensure that even pack
-    	expansion arguments are not evaluated.
+	expansion arguments are not evaluated.

 2011-02-16  Jakub Jelinek  <jakub@redhat.com>

diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 5b95565..0b3a49a 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -17,7 +17,7 @@ 
 2011-01-07  Kai Tietz  <kai.tietz@onevision.com>

 	PR bootstrap/47215
-        * decl.c (java_init_decl_processing): Initialize unsigned_type_node.
+	* decl.c (java_init_decl_processing): Initialize unsigned_type_node.

 2011-01-07  Kai Tietz  <kai.tietz@onevision.com>

@@ -139,7 +139,7 @@ 
 2010-10-04  Andi Kleen <ak@linux.intel.com>

 	* Make-lang.in (xgcj, jc1, jcf-dump, jvgenmain):
-        Add + to build rule.
+	Add + to build rule.

 2010-09-29  Joseph Myers  <joseph@codesourcery.com>

@@ -685,7 +685,7 @@ 
 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>

 	* class.c: Replace %J by an explicit location. Update all calls.
-	
+
 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>

 	* jcf-parse.c: Replace %H by an explicit location. Update all calls.
@@ -700,7 +700,7 @@ 
 	(MANGLE_CXX_KEYWORDS): New macro.
 	(append_gpp_mangled_name): Use MANGLE_CXX_KEYWORDS.
 	(append_gpp_mangled_name): Likewise.
-	* mangle.c: Move code to mangle_name.c. 
+	* mangle.c: Move code to mangle_name.c.
 	(mangle_member_name): Don't call cxx_keyword_p.

 2009-06-12  Aldy Hernandez  <aldyh@redhat.com>
@@ -718,7 +718,7 @@ 
 	* builtins.c: Same.
 	* expr.c: Same.
 	* java-tree.h (PUSH_FIELD): Add location field.
-	
+
 2009-06-09  Ian Lance Taylor  <iant@google.com>

 	* verify.h: Remove extern "C".
@@ -785,9 +785,9 @@ 

 2009-04-09  Paolo Bonzini  <bonzini@gnu.org>

-        * builtins.c (compareAndSwapLong_builtin,
-        compareAndSwapInt_builtin, compareAndSwapObject_builtin,
-        VMSupportsCS8_builtin): Do not look at sync_compare_and_swap_cc.
+	* builtins.c (compareAndSwapLong_builtin,
+	compareAndSwapInt_builtin, compareAndSwapObject_builtin,
+	VMSupportsCS8_builtin): Do not look at sync_compare_and_swap_cc.

 2009-03-31  Richard Guenther  <rguenther@suse.de>

@@ -932,7 +932,7 @@ 
 	mixed declarations and code.

 	2008-05-02  Doug Kwan  <dougkwan@google.com>
-	
+
 	* expr.c (build_java_throw_out_of_bounds_exception ): Wrap call to
 	_Jv_ThrowBadArrayIndex with a COMPOUND_EXPR to return 0.

@@ -947,8 +947,8 @@ 

 	* java-gimplify.c (java_gimplify_expr): Make pre_p and post_p
 	sequences.
-	(java_gimplify_self_mod_expr): Same.                                    
-	* java-tree.h (java_gimplify_expr): Make pre_p and post_p               
+	(java_gimplify_self_mod_expr): Same.
+	* java-tree.h (java_gimplify_expr): Make pre_p and post_p
 	sequences.

 2008-07-24  Jan Hubicka  <jh@suse.cz>
@@ -1094,9 +1094,9 @@ 

 2008-04-03  Paolo Bonzini  <bonzini@gnu.org>

-        * java-tree.h (insert_block): Kill.
-        * decl.c (insert_block): Kill.
-		
+	* java-tree.h (insert_block): Kill.
+	* decl.c (insert_block): Kill.
+
 2008-04-01  Joseph Myers  <joseph@codesourcery.com>

 	* gcj.texi: Include gpl_v3.texi instead of gpl.texi
@@ -1127,10 +1127,10 @@ 

 2008-03-11  Paolo Bonzini  <bonzini@gnu.org>

-        * jcf-parse.c (java_parse_file): Assert binding levels are
-        left in order.
-        * lang.c (LANG_HOOKS_CLEAR_BINDING_STACK, java_clear_binding_stack):
-        Delete.
+	* jcf-parse.c (java_parse_file): Assert binding levels are
+	left in order.
+	* lang.c (LANG_HOOKS_CLEAR_BINDING_STACK, java_clear_binding_stack):
+	Delete.

 2008-03-02  Jakub Jelinek  <jakub@redhat.com>

@@ -1459,12 +1459,12 @@ 
 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

 	* class.c (java_treetreehash_hash, java_treetreehash_compare):
-	Constify. 
+	Constify.
 	* expr.c (type_assertion_eq): Likewise.
 	* jcf-io.c (compare_path): Likewise.
 	* jcf-parse.c (cmpstringp): Likewise.
 	* verify-impl.c (get_one_type, compute_argument_types,
-	compute_return_type): Likewise. 
+	compute_return_type): Likewise.

 2007-07-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>

@@ -1490,7 +1490,7 @@ 

 2007-07-03  David Daney  <ddaney@avtrex.com>

-	* java/Make-lang.in (doc/gcj.info): Add $(gcc_docdir) to 
+	* java/Make-lang.in (doc/gcj.info): Add $(gcc_docdir) to
 	include path.
 	(doc/gcj.dvi): Same.
 	(doc/gcj.pdf): Same.
@@ -1541,16 +1541,16 @@ 

 2007-04-03  Andrew Haley  <aph@redhat.com>

-        * jvgenmain.c (main): Change main to use class$, not class$$.
-        (do_mangle_classname): Likewise.
-        * class.c (hide): New function.
-        (add_field): Hide everything that shouldn't be visible outside a
-        DSO.
-        (build_static_class_ref): Likewise.
-        (build_classdollar_field): Likewise.
-        (make_class_data): Likewise.
-        (layout_class_method): Likewise.
-        * expr.c (special_method_p): New function.
+	* jvgenmain.c (main): Change main to use class$, not class$$.
+	(do_mangle_classname): Likewise.
+	* class.c (hide): New function.
+	(add_field): Hide everything that shouldn't be visible outside a
+	DSO.
+	(build_static_class_ref): Likewise.
+	(build_classdollar_field): Likewise.
+	(make_class_data): Likewise.
+	(layout_class_method): Likewise.
+	* expr.c (special_method_p): New function.

 	* class.c (push_class): Don't bogusly guess the source filename.
 	* jcf-parse.c (give_name_to_class): Don't set input_location from
@@ -2064,7 +2064,7 @@ 

 	* expr.c (rewrite_arglist_getcaller): New.
 	(rewrite_arglist_getclass): Fix indentation.
-	(rules): Add gnu.classpath.VMStackWalker.getCallingClass() and 
+	(rules): Add gnu.classpath.VMStackWalker.getCallingClass() and
 	gnu.classpath.VMStackWalker.getCallingClassLoader().
 	* builtins.c (initialize_builtins): Remove duplicate def'n of
 	__sync_synchronize.
@@ -2129,21 +2129,21 @@ 
 	* jcf-parse.c (field_offsets, bit_obstack): New variables.
 	(jcf_parse): Write end marker to annotation_data.
 	(java_parse_file): Create field_offsets bitmap.  Destroy it.
-	(annotation_grow, annotation_rewrite_byte) 
-	(annotation_rewrite_short, annotation_rewrite_int) 
-	(annotation_read_short, annotation_write_byte) 
-	(annotation_write_short, annotation_write_int) 
-	(handle_long_constant, handle_constant, handle_element_value) 
-	(handle_annotation, handle_annotations) 
-	(handle_annotation_attribute, rewrite_reflection_indexes) 
-	(handle_member_annotations, handle_parameter_annotations) 
+	(annotation_grow, annotation_rewrite_byte)
+	(annotation_rewrite_short, annotation_rewrite_int)
+	(annotation_read_short, annotation_write_byte)
+	(annotation_write_short, annotation_write_int)
+	(handle_long_constant, handle_constant, handle_element_value)
+	(handle_annotation, handle_annotations)
+	(handle_annotation_attribute, rewrite_reflection_indexes)
+	(handle_member_annotations, handle_parameter_annotations)
 	(handle_default_annotation): New functions.
-	(HANDLE_RUNTIMEVISIBLEANNOTATIONS_ATTRIBUTE) 
-	(HANDLE_RUNTIMEINVISIBLEANNOTATIONS_ATTRIBUTE) 
-	(HANDLE_RUNTIMEVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE) 
-	(HANDLE_RUNTIMEINVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE) 
+	(HANDLE_RUNTIMEVISIBLEANNOTATIONS_ATTRIBUTE)
+	(HANDLE_RUNTIMEINVISIBLEANNOTATIONS_ATTRIBUTE)
+	(HANDLE_RUNTIMEVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE)
+	(HANDLE_RUNTIMEINVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE)
 	(HANDLE_ANNOTATIONDEFAULT_ATTRIBUTE): New definitions.
-	* java-tree.h (enum jv_attr_type, enum jv_attr_kind): New. 
+	* java-tree.h (enum jv_attr_type, enum jv_attr_kind): New.
 	(TYPE_REFLECTION_DATA): New.
 	(TYPE_REFLECTION_DATASIZE): New.
 	* jcf.h (enum cpool_tag): Convert a bunch of #define constants to
@@ -2256,7 +2256,7 @@ 
 	putVolatile_builtin, getVolatile_builtin): New builtins.

 2006-06-08  Andrew Haley  <aph@redhat.com>
- 
+
 	* expr.c (build_field_ref): Pass NULL_TREE as SPECIAL arg to
 	get_symbol_table_index().
 	(maybe_rewrite_invocation): Set SPECIAL if we need to access a
@@ -2276,7 +2276,7 @@ 
 	it to build_symbol_entry().
 	* parse.y (patch_invoke): Call maybe_rewrite_invocation() and set
 	special accordingly.
- 
+
 2006-09-08  Andrew Haley  <aph@redhat.com>

 	* class.c (layout_class_method): Use build_java_signature, not
@@ -2313,9 +2313,9 @@ 

 2006-07-07  Andrew Haley  <aph@redhat.com>

-        * jcf-parse.c (set_source_filename): Don't check for
+	* jcf-parse.c (set_source_filename): Don't check for
 	CLASS_FROM_CURRENTLY_COMPILED_P.
-        Remove // comments.
+	Remove // comments.

 2006-07-07  Andrew Haley  <aph@redhat.com>

@@ -2521,7 +2521,7 @@ 
 	* java-tree.h (update_aliases): Remove
 	* expr.c (expand_iinc): Remove call to update_aliases().
 	(STORE_INTERNAL): Likewise.
-	* decl.c (update_aliases, initialize_local_variable) 
+	* decl.c (update_aliases, initialize_local_variable)
 	(maybe_pushlevels): Set DECL_VALUE_EXPR for debugging decls.

 2006-06-19  Andrew Haley  <aph@redhat.com>
@@ -2821,7 +2821,7 @@ 

 	* typeck.c (build_java_array_type): Generate TYPE_STUB_DECLs for
 	array types.
-	
+
 2006-02-08  Tom Tromey  <tromey@redhat.com>

 	PR java/22578:
@@ -3060,7 +3060,7 @@ 
 	* parse.y (maybe_create_class_interface_decl): Set TYPE_PACKAGE for
 	the newly created type. Set import lists here, not in create_class.
 	(jdep_resolve_class): Set current_class.
-	(do_resolve_class): Use current_class's TYPE_PACKAGE to determine 
+	(do_resolve_class): Use current_class's TYPE_PACKAGE to determine
 	the current package context, not ctxp->package.
 	(cicp_cache): Removed.
 	(class_in_current_package): Simplify implementation using TYPE_PACKAGE.
@@ -3070,7 +3070,7 @@ 

 2005-09-09  Andrew Haley  <aph@redhat.com>

-	PR libgcj/23182 
+	PR libgcj/23182
 	* expr.c (pop_type_0): If the expected type is object or ptr
 	(i.e. void*), return the type of the object we just popped from
 	the stack.
@@ -3228,11 +3228,11 @@ 
 	empty_statement.

 2005-07-08  Daniel Berlin  <dberlin@dberlin.org>
-	
+
 	* java-tree.h (LABEL_RETURN_LABELS): Use decl_non_common.
 	(LABEL_PENDING_CHAIN): Ditto.
 	(LABEL_PC): Ditto.
-	(DECL_BIT_INDEX): Ditto.	
+	(DECL_BIT_INDEX): Ditto.

 2005-07-07  Bryce McKinlay  <mckinlay@redhat.com>

@@ -3241,7 +3241,7 @@ 
 	check_inner_class_access.
 	(check_inner_class_access): Use inner_class_accessible.
 	(resolve_inner_class): Simplify arguments. Create circularity hash
-	here. Keep looking for classes if we found one that was inaccessible. 
+	here. Keep looking for classes if we found one that was inaccessible.
 	Return the inaccessible class only if there is no other match.
 	(do_resolve_class): Update for new resolve_inner_class arguments.
 	Don't create circularity_hash here.
@@ -3256,7 +3256,7 @@ 
 	(java_complete_expand_method): Don't use purge_unchecked_exceptions
 	or save/restore the exception list.
 	(check_thrown_exceptions): Add uncaught exceptions in anonymous
-	class initializers and constructors to the throws clause of the method.	
+	class initializers and constructors to the throws clause of the method.

 2005-07-05  Bryce McKinlay  <mckinlay@redhat.com>

@@ -3431,7 +3431,7 @@ 

 2005-05-26  Bryce McKinlay  <mckinlay@redhat.com>

-	* decl.c (GCJ_BINARYCOMPAT_ADDITION, 
+	* decl.c (GCJ_BINARYCOMPAT_ADDITION,
 	GCJ_BOOTSTRAP_LOADER_ADDITION): Removed.
 	(FLAG_BINARYCOMPAT_ABI, FLAG_BOOTSTRAP_LOADER,
 	MINOR_BINARYCOMPAT_ABI_VERSION): New.
@@ -3626,7 +3626,7 @@ 
 2005-04-27  Bryce McKinlay  <mckinlay@redhat.com>

 	* gcj.texi (libgcj Runtime Properties): Remove obsolete
-	gnu.gcj.runtime.NameFinder.* system properties. Update documentation 
+	gnu.gcj.runtime.NameFinder.* system properties. Update documentation
 	for gnu.gcj.runtime.NameFinder.use_addr2line and gnu.gcj.progname.

 2005-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
@@ -3673,7 +3673,7 @@ 

 	* java-except.h (struct eh_range.handler): Remove unused field.
 	(handle_nested_ranges): Remove function declaration.
-	(sanity_check_exception_range): Add function declaration.	
+	(sanity_check_exception_range): Add function declaration.
 	* verify.c (verify_jvm_instructions): Remove call to
 	handle_nested_ranges.
 	* verify-glue.c (verify_jvm_instructions_new): Call
@@ -3772,7 +3772,7 @@ 

 	PR java/20502
 	* jcf-parse.c (duplicate_class_warning): New function.
-	(java_parse_file): Call duplicate_class_warning if 
+	(java_parse_file): Call duplicate_class_warning if
 	CLASS_FROM_CURRENTLY_COMPILED_P is already set.
 	(parse_zip_file_entries): Likewise. Also set
 	CLASS_FROM_CURRENTLY_COMPILED_P.
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog
index b97da6f..146e21b 100644
--- a/gcc/lto/ChangeLog
+++ b/gcc/lto/ChangeLog
@@ -175,8 +175,8 @@ 

 2010-10-03  Andi Kleen <ak@linux.intel.com>

-    	* lto.c (lto_file_finalize): Replace gcc_assert for missing section
-          with fatal_error.
+	* lto.c (lto_file_finalize): Replace gcc_assert for missing section
+	  with fatal_error.

 2010-09-28  Jan Hubicka  <jh@suse.cz>

@@ -213,7 +213,7 @@ 
 2010-09-16  Jan Hubicka  <jh@suse.cz>

 	* lto.c (lto_materialize_function): Do not tamper with STATIC and
-	EXTERNAL flags. 
+	EXTERNAL flags.

 2010-09-15  Laurynas Biveinis  <laurynas.biveinis@gmail.com>

@@ -279,7 +279,7 @@ 
 2010-07-10   Andi Kleen <ak@linux.intel.com>

 	PR lto/44992
-        * lto.c: Include splay-tree.h
+	* lto.c: Include splay-tree.h
 	(lto_resolution_read): Change to walk file_ids tree and parse
 	extra file_id in resolution file.
 	(lto_section_with_id): Add.
@@ -331,7 +331,7 @@ 

 2010-07-04  Jan Hubicka  <jh@suse.cz>

-        * lto.c (read_cgraph_and_symbols): Dump cgraph before merging.
+	* lto.c (read_cgraph_and_symbols): Dump cgraph before merging.

 2010-06-13  Richard Guenther  <rguenther@suse.de>

@@ -671,7 +671,7 @@ 
 	* lto.c (O_BINARY): Define.
 	(lto_read_section_data): Open file in binary mode.
 	* lto-elf.c (O_BINARY): Define.
-	(lto_elf_file_open): Open file in binary mode. 
+	(lto_elf_file_open): Open file in binary mode.

 2010-01-08  Richard Guenther  <rguenther@suse.de>

@@ -750,7 +750,7 @@ 
 	* lto.c (lto_resolution_read): Add more checks. Discard rest of line.

 2009-11-04  Richard Guenther  <rguenther@suse.de>
-            Rafael Avila de Espindola  <espindola@google.com>
+	    Rafael Avila de Espindola  <espindola@google.com>

 	* lto-elf.c (lto_elf_build_section_table): Add the base offset.
 	(lto_elf_file_open): Handle offsets in arguments name@offest.
@@ -1231,7 +1231,7 @@ 

 2009-01-29  Ramana Radhakrishnan  <ramana.r@gmail.com>

-	* Make-lang.in (LTO_EXE): Link with all 
+	* Make-lang.in (LTO_EXE): Link with all
 	BACKENDLIBS and not only GMPLIBS

 2009-01-28  H.J. Lu  <hongjiu.lu@intel.com>
@@ -1431,7 +1431,7 @@ 
 	exceptions flag is given.
 	* lto-lang.c: (lto_init_options) Set default exceptions flag.
 	(lto_init_eh): Remove exceptions flag initialization.
-	(lto_init): Only call lto_init_eh if exceptions flag is set. 
+	(lto_init): Only call lto_init_eh if exceptions flag is set.

 2008-10-21  Diego Novillo  <dnovillo@google.com>

@@ -1562,7 +1562,7 @@ 
 	* lto.c (lto_main): Call lto_fixup_nothrow_decls to fix up function
 	bodies affected by exception attribute merging of DECLs.
 	* lto-symtab.c (lto_symtab_merge_decl): Handle exception attribute
-	merging. 
+	merging.

 2008-09-25  Rafael Espindola  <espindola@google.com>

@@ -1640,7 +1640,7 @@ 
 	return a bitmap of inlined decls.
 	(lto_wpa_write_files): Handle all DECLs brought in by inlining.
 	(lto_main): Call reset_inline_failed to reset inlining states.
-    	Check call-graph after WPA inlining.
+	Check call-graph after WPA inlining.
 	* lto-lang.c (lto_init): Do not clear flag_generate_lto
 	unconditionally.

@@ -1698,7 +1698,7 @@ 
 2008-08-04  Bill Maddox  <maddox@google.com>

 	* lto-symtab.c (lto_symtab_merge_decl): Add comment.
-	
+
 2008-09-03  Doug Kwan  <dougkwan@google.com>

 	lto.c (lto_add_all_inlinees): Reset FAILED_REASON of edges to
@@ -1754,7 +1754,7 @@ 
 	(lto_1_to_1_map, lto_add_all_inlinees, lto_wpa_write_files):
 	New functions.
 	(lto_main): Initialize bitmap obstack.  Add code to handle WPA mode.
-	* Make-lang.in (LTO_H): Replace filename lto-section-in.h with 
+	* Make-lang.in (LTO_H): Replace filename lto-section-in.h with
 	variable LTO_SECTION_IN_H.
 	(lto/lto.o): Include gt-lto-lto-c.h ggc.h ,VEC_H, BITMAP_H,
 	pointer-set.h and IPA_PROP_H. Also replace filename lto-section-in.h
@@ -1770,12 +1770,12 @@ 
 	asserting.
 	(lto_post_options): Suppress debug info generation.
 	* Make-lang.in: Add dependency of lto-lang.o on tree-gimple.h.
-	
+
 2008-08-25  Bill Maddox <maddox@google.com>

 	* lto-symtab.c (lto_symtab_merge_decl): Remove a suspect
 	assertion and leave an explanatory comment in its place.
-	
+
 2008-08-21  Doug Kwan  <dougkwan@google.com>

 	* lto.c (preload_common_nodes): Call lto_get_common_nodes to get a list
@@ -1805,21 +1805,21 @@ 
 	* lto.h (struct lto_file_struct): Remove GTY marker.
 	* config-lang.in: Remove lto/lto.h and lto/lto.c from
 	gtfiles.
-	
+
 2008-08-20  Bill Maddox  <maddox@google.com>

 	* lto.c (lto_read_decls): Provide dummy argument to input_tree
 	to conform to its new signature.
 	* lto-symtab.c (lto_symtab_merge_decl): Do not invoke ggc_free
 	on discarded node here, now called in global_vector_fixup.
-	
+
 2008-08-09  Bill Maddox  <maddox@google.com>

 	* lto.c (preload_common_nodes): Verify that fileptr_type_node
 	has not been set to a front-end-specific value.
-	
+
 2008-08-05  Doug Kwan  <dougkwan@google.com>
-	
+
 	* Make-lang.in (lto-symtab.o): Add missing dependencies to fix
 	build breakage.

@@ -2038,7 +2038,7 @@ 

 2008-06-07  Kenneth Zadeck <zadeck@naturalbridge.com>
 	    Jan Hubicka  <jh@suse.cz>
-	
+
 	* lto.c (sys/mman.h, tree-pass.h): New includes.
 	(lto_materialize_constructors_and_inits,
 	lto_materialize_function): Keeps length of section.
@@ -2050,12 +2050,12 @@ 
 	(lto_read_section_data, get_section_data, free_section_data): New
 	functions.
 	(lto_main): Now calls pass manager, sets the hooks so that the ipa
-	passes can get the section data. 
-	
+	passes can get the section data.
+
 2008-05-27  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto.h (lto_read_decls): Made local.
-	(lto_input_function_body, lto_input_constructors_and_inits, 
+	(lto_input_function_body, lto_input_constructors_and_inits,
 	lto_input_cgraph): Declarations moved to lto-section-in.h.
 	* lto-section-in.c: Moved to .. .
 	* lto-cgraph-in.c: Ditto.
@@ -2066,7 +2066,7 @@ 
 	(LANG_HOOKS_INSERT_BLOCK): Removed.
 	* Make-lang.in (lto-cgraph-in.o, lto-function-in.o,
 	lto-section-in.o): Rules moved to lto/Makefile.in.
-	
+

 2008-05-16  Ollie Wild  <aaw@google.com>

@@ -2147,7 +2147,7 @@ 
 	(lto_file_read): Made local and initialize dictionary so that
 	other lto sections can be read without reprocessing the elf file.
 	(lto_main): Read all functions after all files have been processed
-	for their types, globals and cgraph.  
+	for their types, globals and cgraph.
 	* Make-lang.in (lto.o, lto-cgraph-in.c, lto-section-in): Changed
 	dependencies.
 	* lto-elf.c (lto_elf_file): Removed strtab, symtab fields.
@@ -2157,7 +2157,7 @@ 
 	* lto.h (lto_info_fd_struct): Removed unmaterialized_fndecls.
 	(lto_file_read): Made local.
 	(lto_get_file_name, lto_elf_build_section_table,
-	lto_input_cgraph): 
+	lto_input_cgraph):
 	New function.
 	* lto-section-in.c (lto_read_section_data, lto_get_section_data):
 	New functions.
@@ -2172,7 +2172,7 @@ 
 	* lto_section_in.h (lto_section_slot): New structure.
 	(section_hash_table.lto_file_decl_data): New field.

-	
+
 2008-02-09  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto.c (lto_read_variable_formal_parameter_const): Remove code to
@@ -2191,7 +2191,7 @@ 
 	* lto/lto-elf.c (lto_elf_map_optional_lto_section): Add
 	lto_section_type parameter.
 	(lto_elf_unmap_fn_body): Renamed to lto_elf_unmap_section.
-	* lto.h (lto_file_vtable_struct): Removed two of the fields and 
+	* lto.h (lto_file_vtable_struct): Removed two of the fields and
 	renamed the other two so that there is only one map function and
 	one unmap function and each takes a section type parameter.
 	(lto_read_function_body): Renamed to lto_input_function_body and
@@ -2209,7 +2209,7 @@ 
 	(lto_read_function_body, lto_input_constructors_and_inits):
 	Renamed to lto_input_function_body and takes file_data parameter.
 	* lto-section-in.h (lto_file_decl_data): New structure.
-	
+
 2008-01-28  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-function-in.c (input_globals.c): Changed input type to
@@ -2218,8 +2218,8 @@ 
 	(input_function): Renumber all stmts after they are input.
 	(lto_read_body, lto_read_function_body, lto_read_var_init):
 	Changed to used new header format and enum section_type.
-	*lto-lang.c (success): Removed. 
-	
+	*lto-lang.c (success): Removed.
+
 2008-01-28  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto-elf.c (lto_elf_lookup_sym): Remove unused function.
@@ -2251,7 +2251,7 @@ 
 	* lto-section-in.c: New file with changes from above.
 	* Make-lang.in (lto-read.o): Renamed lto-function-in.c.
 	(lto-section-in.o): New rule.
-	
+
 2007-12-29  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto-read.c (input_expr_operand): Mark static and external
@@ -2374,7 +2374,7 @@ 
 	* lto.h (struct lto_str_fd_struct): New struct.
 	(struct lto_file_struct): Added new field DEBUG_STR
 	to hold the file descriptor for the debug string table.
-	
+
 2007-12-07  Bill Maddox  <maddox@google.com>

 	* lto.c (lto_str_fd_init): New function.
@@ -2490,14 +2490,14 @@ 

 2007-11-16  Kenneth Zadeck <zadeck@naturalbridge.com>

-	* lto-read.c (input_expr_operand): Get types right 
+	* lto-read.c (input_expr_operand): Get types right
 	for COMPLEX_CST.

 2007-11-16  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (make_new_block, input_cfg): Properly set
 	n_basic_blocks.
-	
+
 2007-11-16  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto.c (lto_read_array_type_DIE): Handle DIEs with DW_AT_GNU_vector
@@ -2517,7 +2517,7 @@ 
 	(input_expr_operand): Keeps track locally if current node needs a loc.
 	(input_local_var): Added code to handle DECL_INITIAL for
 	static local vars. Only set loc if necessary.
-	
+
 2007-11-15  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto.c (lto_read_subroutine_type_subprogram_DIE): Fix thinko'd
@@ -2542,14 +2542,14 @@ 
 	registered_builtin_fndecls.

 2007-11-15  Kenneth Zadeck <zadeck@naturalbridge.com>
-	    
+
 	* lto-read.c (process_tree_flags, lto_static_init_local):
 	Renamed to ADD_CLASS_EXPR_FLAG. ADD_CLASS_DECL_FLAG New Macro.
 	(input_line_info, clear_line_info): Fixed new line number code.
 	(input_expr_operand): Added type to SWITCH_EXPR.
 	(lto_read_body): Properly initialized data_in.
 	Clear line info when leaving.
-	
+
 2007-11-13  Diego Novillo  <dnovillo@google.com>

 	* lto.c (lto_read_variable_formal_parameter_constant_DIE):
@@ -2562,11 +2562,11 @@ 
 2007-11-13  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (input_type_ref): Renamed from get_type_ref.
-	(input_expr_operand, input_local_var): Renamed get_type_ref to 
+	(input_expr_operand, input_local_var): Renamed get_type_ref to
 	input_type_ref.
-	(input_expr_operand): Get the types correct for 
+	(input_expr_operand): Get the types correct for
 	vector-cst.  Get SSA_NAME_DEF_STMT correct for return_exprs.
-	
+
 2007-11-13  Doug Kwan  <dougkwan@google.com>

 	* lto-read.c (input_widest_uint_uleb128): New function.
@@ -2584,7 +2584,7 @@ 
 	DW_AT_static_link and DW_AT_specification.  Return the
 	specification if present.
 	(lto_read_base_type_DIE): Handle DW_ATE_complex_float.
-	
+
 2007-11-13  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto-lang.c: Include target.h.
@@ -2600,7 +2600,7 @@ 

 	* lto-read.c (input_expr_operand): Added code to properly handle
 	index filed. Added new RANGE_EXPR case.
-	
+
 2007-11-11  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (ADD_FUNC_FLAG): Deleted macro.
@@ -2668,7 +2668,7 @@ 
 	 read flags of VAR_DECL and FUNCTION_DECL of size>1.
 	 change global array num_flags_for_code to flags_length_for_code.
 	 (set_line_info): Make decls work in USE_MAPPED_LOCATION mode.
-	
+
 2007-11-05  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto.c (lto_read_structure_union_class_type_DIE): Use proper record
@@ -2714,10 +2714,10 @@ 

 	* lto-read.c (data_in): Added type_decls and current_col fields.
 	(string_slot): New type to hold canonized file name.
-	(hash_string_slot_node, eq_string_slot_node, canon_file_name, 
+	(hash_string_slot_node, eq_string_slot_node, canon_file_name,
 	input_line_info, set_line_info, clear_line_info): New functions.
 	(file_name_hash_table): New hash table.
-	(input_local_var, input_labels, input_local_vars_index, 
+	(input_local_var, input_labels, input_local_vars_index,
 	input_local_var, input_local_vars, input_ssa_names): Reorganized parameters.
 	(input_uleb128): Changed type of byte var.
 	(input_expr_operand): Large number of changes to get line numbers
@@ -2731,7 +2731,7 @@ 
 	(lto_read_body): Added code to get TYPE_DECLS read and to change
 	parameters to the calls above that had their parms reorganized.

-	
+
 2007-10-29  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto.h (lto_resolve_typedecl_ref): Declare.
@@ -2753,7 +2753,7 @@ 

 	* lto-read.c (input_expr_operand): Give label_values the proper
 	context and provide switch statements with a default type.
-	
+
 2007-10-23  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto-read.c (lto_read_body): Move call to init_ssa_operands...
@@ -2787,7 +2787,7 @@ 
 	(input_ssa_names): Now calls input_tree_flags.
 	(lto_read_body): Now sets cfun.
 	(lto_read_function_body): Now sets current_function_pointer.
-	
+
 2007-10-19  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto.c (lto_read_variable_formal_parameter_constant_DIE): Check
@@ -2862,8 +2862,8 @@ 
 	(input_expr_operand): Make asm operands use input_tree_list.
 	(input_local_var): Now uses input_tree_list.
 	(lto_read_body): Change placement for setting context of debug_labels.
-	
-	
+
+
 2007-10-16  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (input_real): Output debugging in proper order.
@@ -2875,7 +2875,7 @@ 
 	written.
 	(dump_debug_stream): Also print char in hex.
 	(debug_out_fun): Fix signed unsigned mismatch.
-	
+
 2007-10-10  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto.c (lto_read_form): Handle DW_AT_MIPS_linkage_name and
@@ -2913,7 +2913,7 @@ 
 2007-09-11  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (input_expr_operand): Added type for STRING_CST.
-	
+
 2007-09-10  Nathan Froyd  <froydnj@codesourcery.com>

 	* lto-read.c (lto_read): Set the type of the newly created CALL_EXPR.
@@ -2947,33 +2947,33 @@ 

 	* lto-read.c (fun_in): Renamed to data_in.
 	(input_expr_operand, input_local_var, input_string_internal,
-	input_string, input_real, input_list, get_label_decl, 
+	input_string, input_real, input_list, get_label_decl,
 	get_type_ref, input_expr_operand, input_globals, input_labels,
-	input_local_vars_index, input_local_var, input_local_vars, 
+	input_local_vars_index, input_local_var, input_local_vars,
 	input_cfg, input_phi, input_ssa_names, input_bb, ): Renamed fun_in to data_in.
 	(input_constructor): New function.
 	(lto_read_function_body): Renamed to lto_read_body and generalized
 	to handle both functions and constructors.
 	(lto_read_function_body, lto_read_var_init): New function.
-	
-	
+
+
 2007-08-28  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (input_expr_operand): Assert that there really is a
 	FUNCTION_DECL.
 	(input_globals): Removed checks on 0 section.
-	
+
 2007-08-28  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (fun_in): Added local_decls_index and
-	local_decls_index_d.  
+	local_decls_index_d.
 	(input_expr_operand): Changed inputting of PARM_DECLs and VAR_DECLs.
 	(input_globals): Enabled code to handle FIELD_DECLs.
 	(input_local_vars_index, input_local_vars): New function.
 	(input_local_var): Changed to allow locals to be input randomly.
 	(lto_read_function_body): Added code to input the
 	local_decls_index and to free various structures.
-	
+
 2007-08-17  Jim Blandy  <jimb@codesourcery.com>

 	* lto.c (lto_read_variable_formal_parameter_constant_DIE): Remove
@@ -3004,7 +3004,7 @@ 

 	* lto.c (lto_read_form): Complete attr_classes table.
 	(DWARF2_form_data): Doc fix.
-	
+
 2007-08-05  Mark Mitchell  <mark@codesourcery.com>

 	* lto.h (lto_file_vtable): Remove read_var_init.  Add map_var_init
@@ -3023,7 +3023,7 @@ 

 	* lto-read.c (lto_read_function_body): Moved declaration of fn
 	outside of ifdef.
-	
+
 2007-08-01  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (input_uleb128, input_string_internal, input_real,
@@ -3032,13 +3032,13 @@ 
 	input_expr_operand, input_local_vars, input_cfg, input_phi,
 	input_ssa_names, input_bb, input_function): Added semicolons.

-	
+
 2007-07-31  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (input_globals): Remove debugging.
 	(input_function): Set DECL_ARGUMENTS.

-	
+
 2007-07-31  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto-read.c (input_expr_operand): Fixed code for COND_EXEC,
@@ -3048,8 +3048,8 @@ 
 	(input_ssa_names): Initialize SSA_NAME_DEF_STMT to empty stmt.
 	(input_flags): New function.
 	* lto-lang.c (lto_init): Changed state of in_lto_p.
-	
-	
+
+
 2007-07-24  Mark Mitchell  <mark@codesourcery.com>

 	* lto-tree.h (lto_varargs_cookie): Remove.
@@ -3099,8 +3099,8 @@ 
 	(lto_read_function_body): Processes new header fields to construct
 	streams for the ssa_names and cfg and their debugging.
 	* lto/lto-lang.c (lto_init): Set in_lto_p.
-	
-	
+
+
 2007-06-28  Mark Mitchell  <mark@codesourcery.com>

 	* lto.h (lto_file_vtable): Add read_var_init.
@@ -3127,11 +3127,11 @@ 

 	* lto-read (make_new_block): Initialize the stmt_list.
 	(lto_static_init_local): Add debugging for missing codes.
-	
+
 2007-06-26  Mark Mitchell  <mark@codesourcery.com>

 	* lto.c (lto_read_subroutine_type_subprogram_DIE): Handle
-	unprototyped functions. 
+	unprototyped functions.

 2007-06-23  Mark Mitchell  <mark@codesourcery.com>

@@ -3143,9 +3143,9 @@ 
 	* lto-symbtab.c: Build function types out of TREE_LISTs.

 	* lto-elf.c (<libelf>): Check for HAVE_LIBELF_H.
-	
+
 	* Make-lang.in (LTO_OBJS): Depend on attribs.o.
-	
+
 2007-06-21  Kenneth Zadeck <zadeck@naturalbridge.com>

 	* lto/lto-tree.h (lang_decl, lang_type, language_function): Added
@@ -3269,7 +3269,7 @@ 
 	(lto_read_form): Change first argument to lto_info_fd *.
 	Add FORM_CONTEXT argument.
 	Handle DW_FORM_ref_addr.
-	(lto_read_tag_DIE): Change first argument to lto_info_fd *.	
+	(lto_read_tag_DIE): Change first argument to lto_info_fd *.
 	(LTO_BEGIN_READ_ATTRS_UNCHECKED): Save old context.
 	Swap contexts if necessary for form.
 	(LTO_BEGIN_READ_ATTRS): Cast fd to right type for
@@ -3292,7 +3292,7 @@ 
 	* lto.h (DWARF2_CompUnit): New structure.
 	(lto_info_fd): Ditto.
 	(lto_file): Change debug_info to be an lto_info_fd.
-	
+
 2006-06-25  Mark Mitchell  <mark@codesourcery.com>

 	* lto.c (toplev.h): Include it.
@@ -3351,7 +3351,7 @@ 
 	(lto_file): Use new types.
 	(lto_file_close): Declare.
 	* lto-lang.c (lto_init): Always use unit-at-a-time mode.
-	
+
 2006-06-18  Mark Mitchell  <mark@codesourcery.com>

 	* lto.h: New file.
@@ -3361,7 +3361,7 @@ 
 	(lto.h): Likewise.
 	(lto_init): New function.
 	(lto_write_globals): Remove.
-	(LANG_HOOKS_WRITE_GLOBALS): Define to lhd_do_nothing. 
+	(LANG_HOOKS_WRITE_GLOBALS): Define to lhd_do_nothing.
 	(LANG_HOOKS_INIT): Define.
 	(LANG_HOOKS_PARSE_FILE): Likewise.
 	* Make-lang.in (LTO_OBJS): Add lto.o and lto-elf.o.
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog
index 5194347..ff4fcca 100644
--- a/gcc/objc/ChangeLog
+++ b/gcc/objc/ChangeLog
@@ -5,7 +5,7 @@ 
 2011-02-26  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (objc_v2_encode_prop_attr): Rewritten.
-	
+
 2011-02-23  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (build_private_template): Do not copy the
@@ -166,7 +166,7 @@ 
 	hook.  Added assert.  Use the get_class_super_ref and
 	get_category_super_ref runtime hooks.
 	(objc_v2_encode_prop_attr): New.
-	
+
 2011-01-17  Nicola Pero  <nicola.pero@meta-innovation.com>

 	PR objc/47314
@@ -255,7 +255,7 @@ 
 	(objc_build_setter_call, objc_build_message_expr,
 	objc_finish_foreach_loop): Updated call to
 	objc_finish_message_expr.
-	
+
 2010-12-28  Nicola Pero  <nicola.pero@meta-innovation.com>

 	PR objc/47076
@@ -348,7 +348,7 @@ 
 	c-family/c-objc.h.
 	(objc/objc-lang.o): Same change.
 	* config-lang.in (gtfiles): Added c-family/c-objc.h.
-	
+
 2010-12-02  Joseph Myers  <joseph@codesourcery.com>

 	* lang-specs.h: Don't handle -ftraditional.
@@ -375,7 +375,7 @@ 
 	Allow 'make check-objc -j2'
 	* Make-lang.in (lang_checks_parallelized): New.
 	(check_objc_parallelize): New.
-	
+
 2010-11-29  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (start_class): When a class is reimplemented,
@@ -416,7 +416,7 @@ 
 	readonly properties.
 	(objc_build_class_component_ref): Updated call to
 	maybe_make_artificial_property_decl.
-	
+
 2010-11-27  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (objc_build_struct): Fixed loops that save and
@@ -425,7 +425,7 @@ 
 	Duplicate TYPE_LANG_SPECIFIC for each type before restoring
 	TYPE_OBJC_INFO.
 	(objc_get_protocol_qualified_type): Updated comments.
-	
+
 2010-11-25  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (objc_build_struct): Install TYPE_OBJC_INTERFACE
@@ -470,8 +470,8 @@ 
 	class of a category.  Recognize the 'deprecated' attribute when
 	starting and interface, and mark the interface with
 	TREE_DEPRECATED if present.  Store attributes in the interface.
-	
-2010-11-19  Nicola Pero  <nicola.pero@meta-innovation.com>	
+
+2010-11-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (lookup_protocol): Added 'warn_if_deprecated'
 	argument.  If it is 'true' and the protocol is deprecated, emit a
@@ -489,7 +489,7 @@ 
 	(check_protocol_recursively): Same change.
 	(lookup_and_install_protocols): Same change.
 	* objc-act.h: Updated comments.
-	
+
 2010-11-17  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (lookup_method_in_protocol_list): Search methods in
@@ -549,7 +549,7 @@ 
 	(objc_add_synthesize_declaration_for_property): Check that the
 	property to synthesize and the instance variable to use have the
 	same type.
-	
+
 2010-11-10  Joseph Myers  <joseph@codesourcery.com>

 	* objc-act.c (objc_init): Use %' in diagnostic.
@@ -588,7 +588,7 @@ 
 	protocols and superclasses as well.
 	(objc_synthesize_setter): Search for the setter declaration in
 	protocols and superclasses as well.
-	
+
 2010-11-08  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (lookup_property): When checking categories, also
@@ -606,7 +606,7 @@ 
 	PROPERTY_GETTER_NAME here; this is now done earlier, in
 	objc_add_property_declaration.
 	* objc-act.h (CLASS_NAME, CLASS_SUPER_NAME): Added comments.
-	
+
 2010-11-06  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Fixed using the Objective-C 2.0 dot-syntax with self and super.
@@ -631,7 +631,7 @@ 
 	* objc-tree.def (PROPERTY_REF): Increased the number of operands
 	from 2 to 3.  Updated comments.
 	* objc-act.h (PROPERTY_REF_GETTER_CALL): New.
-	
+
 2010-11-06  Iain Sandoe  <iains@gcc.gnu.org>

 	PR target/44981
@@ -641,7 +641,7 @@ 

 2010-11-04  Nicola Pero  <nicola.pero@meta-innovation.com>

-	Fixed using the Objective-C 2.0 dot-syntax with class names.	
+	Fixed using the Objective-C 2.0 dot-syntax with class names.
 	* objc-act.c (objc_build_class_component_ref): New.

 2010-11-03  Nicola Pero  <nicola.pero@meta-innovation.com>
@@ -656,7 +656,7 @@ 
 	and do not warn if the property is readonly or if the type is a Class.
 	(objc_finish_foreach_loop): Updated calls to
 	objc_type_valid_for_messaging.
-	
+
 2010-11-03  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Implemented -fobjc-std=objc1 flag.
@@ -688,7 +688,7 @@ 
 	(PROPERTY_HAS_NO_GETTER): New.
 	(PROPERTY_HAS_NO_SETTER): New.
 	* objc-tree.def: Updated comment.
-	
+
 2010-11-01  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Implemented format and noreturn attributes for Objective-C methods.
@@ -704,16 +704,16 @@ 
 	"deprecated".  In the case of "format", adjust the arguments.
 	Always process the attributes in the same way no matter if
 	"sentinel" is in the list or not.
-	
+
 2010-11-01  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (objc_maybe_build_component_ref): Warn about using
 	deprecated properties.
 	(objc_maybe_printable_name): Support PROPERTY_DECL.
-	
+
 2010-11-01  Nicola Pero  <nicola.pero@meta-innovation.com>

-	Implemented Objective-C 2.0 property accessors.	
+	Implemented Objective-C 2.0 property accessors.
 	* objc-act.h (enum objc_tree_index): Added OCTI_GET_PROPERTY_DECL,
 	OCTI_SET_PROPERTY_DECL, OCTI_COPY_STRUCT_DECL,
 	OCTI_GET_PROPERTY_STRUCT_DECL and OCTI_SET_PROPERTY_STRUCT_DECL.
@@ -730,7 +730,7 @@ 
 	work with properties that are not nonatomic, assign properties.
 	(objc_synthesize_setter): Implemented synthesizing setters that
 	work with properties that are not nonatomic, assign properties.
-	
+
 2010-10-30  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Implemented Objective-C 2.0 @property, @synthesize and @dynamic.
@@ -821,7 +821,7 @@ 
 	(objc_gimplify_property_ref): New.
 	(objc_gimplify_expr): Use a switch.  In case of a PROPERTY_REF, call
 	objc_gimplify_property_ref.
-	
+
 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (objc_add_property_declaration): Added arguments to
@@ -835,10 +835,10 @@ 
 	(property_setter): Removed.
 	(property_getter): Removed.
 	(property_ivar): Removed.
-	(property_copies): Removed.	
+	(property_copies): Removed.
 	(objc_set_property_attr): Removed.
 	* objc-act.h (enum property_assign_semantics): New.
-	
+
 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (objc_add_property_variable): Renamed to
@@ -846,7 +846,7 @@ 
 	warnings and errors to use it.  Use error, not fatal_error, if a
 	property declaration is found outside an interface or
 	implementation context.
-	
+
 2010-10-24  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (objc_build_keyword_decl): Updated comments.  Do not
@@ -861,7 +861,7 @@ 
 	of DECLs that we don't recognize.  Immediately return NULL for them.
 	(objc_printable_name): Removed C++-specific case, which is no
 	longer used.  Updated comments.
-	
+
 2010-10-23  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (OBJC_GEN_METHOD_LABEL): Updated comments.
@@ -877,7 +877,7 @@ 
 2010-10-21  Iain Sandoe  <iains@gcc.gnu.org>

 	Based on the CFString implementation in FSF apple/trunk branch.
-	
+
 	* objc/objc-act.c (objc_build_string_object): Handle CFStrings.

 2010-10-21  Nicola Pero  <nicola.pero@meta-innovation.com>
@@ -906,7 +906,7 @@ 
 	twice.  Added missing gcc_unreachable for default case - twice.
 	(dump_interface): Use a switch instead of a chain of ifs.
 	(handle_impent): Same change.
-	
+
 2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.h (objc_inherit_code): Removed.
@@ -922,8 +922,8 @@ 
 	(objc_synthesize_getter): Updated call to
 	objc_start_method_definition.  Do not set objc_inherit_code.
 	(objc_synthesize_setter): Updated call to
-	objc_start_method_definition.  Do not set objc_inherit_code.	
-	
+	objc_start_method_definition.  Do not set objc_inherit_code.
+
 2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Merge from 'apple/trunk' branch on FSF servers.  Obvious updates
@@ -939,8 +939,8 @@ 
 	(objc_declare_class): Enter class name into hash table.
 	(objc_is_class_name): Do a hash look up of class name.
 	(hash_init): Initialize the two new hash tables.
-	* objc-act.h: Added cls_name_hash_list and als_name_hash_list 
-	declarations, removed class_chain and alias_chain.	
+	* objc-act.h: Added cls_name_hash_list and als_name_hash_list
+	declarations, removed class_chain and alias_chain.

 2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>

@@ -952,7 +952,7 @@ 
 	for syntax-only run or PCH generation as this is done by the
 	callers.
 	* objc-act.h (objc_finish_file): Removed.
-	
+
 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Implemented parsing @synthesize and @dynamic for
@@ -960,46 +960,46 @@ 
 	* objc-act.c (objc_add_synthesize_declaration): New.
 	(objc_add_dynamic_declaration): New.

-2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>	
+2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (lookup_and_install_protocols): Return NULL if passed
 	error_mark_node.
-	
+
 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Merge from 'apple/trunk' branch on FSF servers.

 	2006-03-10  Fariborz Jahanian <fjahanian@apple.com>

-        Radar 4407151
+	Radar 4407151
 	* objc/objc-act.c (objc_is_class_name): template parameter is not
-        an objective class name.
-        (objc_generate_cxx_cdtors): Check for the null
-        objc_implementation_context.	
+	an objective class name.
+	(objc_generate_cxx_cdtors): Check for the null
+	objc_implementation_context.

 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>

-	Merge from 'apple/trunk' branch on FSF servers.	
-	
+	Merge from 'apple/trunk' branch on FSF servers.
+
 	2005-11-08  Fariborz Jahanian <fjahanian@apple.com>

 	Radar 4330422
 	* objc/objc-act.c (objc_non_volatilized_type): New

 	2005-10-07  Fariborz Jahanian <fjahanian@apple.com>
-	
-        Radar 4204796
+
+	Radar 4204796
 	* objc-act.c (objc_build_volatilized_type): Build 'volatilzed'
 	types with proper attribute set and correctly.
 	(objc_volatilize_decl): Remove unneeded code.
 	(objc_type_quals_match): Use the new attribute to check on
 	'volatilzed' type.
 	(hash_init): removed unneeded code.
-	
+
 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Merge from 'apple/trunk' branch on FSF servers.
-	
+
 	2006-03-27 Fariborz Jahanian <fjahanian@apple.com>

 	Radar 4133425
@@ -1008,10 +1008,10 @@ 
 2010-10-17  Iain Sandoe  <iains@gcc.gnu.org>

 	* objc-act.c: Rename 'objc_public_flag' to  objc_ivar_visibility and
-	make its type 'objc_ivar_visibility_kind'.  
+	make its type 'objc_ivar_visibility_kind'.
 	(objc_start_class_interface): Update to use visibility enum.
 	(objc_start_class_implementation): Likewise.
-	(objc_set_visibility): Update to use visibility enum, warn that 
+	(objc_set_visibility): Update to use visibility enum, warn that
 	@package is handle as per @public.
 	(add_instance_variable): Handle OBJC_IVAR_VIS_PACKAGE.
 	* objc-act.h: Rename 'objc_public_flag' to  objc_ivar_visibility and
@@ -1019,9 +1019,9 @@ 

 2010-10-14  Iain Sandoe  <iains@gcc.gnu.org>

-	merge from FSF apple 'trunk' branch. 
+	merge from FSF apple 'trunk' branch.
 	2006 Fariborz Jahanian <fjahanian@apple.com>
-	
+
 	Radars 4436866, 4505126, 4506903, 4517826
 	* objc-act.c (CALL_EXPR_OBJC_PROPERTY_GETTER): New.
 	property_readonly, property_getter, property_setter, property_ivar,
@@ -1069,7 +1069,7 @@ 

 2010-10-13  Iain Sandoe  <iains@gcc.gnu.org>

-	merge from FSF apple 'trunk' branch. 
+	merge from FSF apple 'trunk' branch.

 	2006-04-26 Fariborz Jahanian <fjahanian@apple.com>
 	Radar 3803157 (method attributes)
@@ -1086,7 +1086,7 @@ 

 	* Make-lang.in (cc1obj-dummy): Remove.
 	(cc1obj-checksum): Change to run checksum over object files
-        and options only.
+	and options only.

 2010-10-07  Nicola Pero  <nicola.pero@meta-innovation.com>

@@ -1096,13 +1096,13 @@ 

 2010-10-07  Iain Sandoe  <iains@gcc.gnu.org>

-	* objc-act.c (build_objc_method_call): Replace calls to 
+	* objc-act.c (build_objc_method_call): Replace calls to
 	build_function_call () with the VEC equivalent.  Construct parameter
 	lists as VECs.

 2010-10-07  Iain Sandoe  <iains@gcc.gnu.org>

-	* objc-act.c (objc_build_message_expr):  Call mark_exp_read () to 
+	* objc-act.c (objc_build_message_expr):  Call mark_exp_read () to
 	signal that the receiver has been used.

 2010-10-06  Nicola Pero  <nicola.pero@meta-innovation.com>
@@ -1131,22 +1131,22 @@ 

 	2006-04-12 Fariborz Jahanian <fjahanian@apple.com>

-        Radar 4507230
+	Radar 4507230
 	* objc-act.c (objc_type_valid_for_messaging): New routine to check
 	for valid objc object types.
 	(objc_finish_foreach_loop): Check for invalid objc objects in
 	foreach header.
-	
+
 2010-10-05  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Merge from 'apple/trunk' branch on FSF servers.

 	2005-10-17  Fariborz Jahanian <fjahanian@apple.com>

-        Radar 4290840
+	Radar 4290840
 	* objc-act.c (objc_start_method_definition): Check for
 	error_mark_node for the selector name and make a quick exit.
-	
+
 2010-10-04  Andi Kleen <ak@linux.intel.com>

 	* Make-lang.in (cc1obj-dummy, cc1obj): Add + to build rule.
@@ -1156,18 +1156,18 @@ 
 	merge from FSF 'apple/trunk' branch.
 	2006-01-30  Fariborz Jahanian <fjahanian@apple.com>

-       Radar 4386773
-       * objc/objc-act.c (objc_set_method_opt): New function.
-       (objc_start_protocol, objc_finish_interface): Reset
-       objc_method_optional_flag flag.
-       (objc_add_method_declaration): Pass on the new
-       flag to objc_add_method.
-       (objc_add_method): Add optional methods to new chain in
-       the protocol class.
-       * objc/objc-act.h (CLASS_OPTIONAL_CLS_METHODS,
-       CLASS_OPTIONAL_NST_METHODS): New macros accessing a protocol
-       class's optional method chains.
-	
+	Radar 4386773
+	* objc/objc-act.c (objc_set_method_opt): New function.
+	(objc_start_protocol, objc_finish_interface): Reset
+	objc_method_optional_flag flag.
+	(objc_add_method_declaration): Pass on the new
+	flag to objc_add_method.
+	(objc_add_method): Add optional methods to new chain in
+	the protocol class.
+	* objc/objc-act.h (CLASS_OPTIONAL_CLS_METHODS,
+	CLASS_OPTIONAL_NST_METHODS): New macros accessing a protocol
+	class's optional method chains.
+
 2010-09-30  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Merge from 'apple/trunk' branch on FSF servers.
@@ -1192,8 +1192,8 @@ 
 	* objc-act.c (objc_is_reserved_word): Removed.

 2010-09-28  Iain Sandoe  <iains@gcc.gnu.org>
-	
-	* objc-act.c (objc_add_method_declaration): Handle and ignore 
+
+	* objc-act.c (objc_add_method_declaration): Handle and ignore
 	attributes.
 	(objc_start_method_definition): Likewise.
 	(objc_generate_cxx_ctor_or_dtor): Pass NULL attributes to ctor/dtor.
@@ -1220,7 +1220,7 @@ 
 	* objc-act.c (objc_decay_parm_type): New function.
 	(get_arg_type_list): Decay types for all named arguments.
 	(objc_push_parm): Rebuild the PARM_DECL if its type has
-	been decayed.	
+	been decayed.

 2010-09-28  Nicola Pero  <nicola.pero@meta-innovation.com>

@@ -1237,7 +1237,7 @@ 
 	* objc-act.c (objc_compare_types): A new silent comparison
 	mode (-4), differing from regular comparison (-3) in that
 	'false' is returned instead of issuing warnings.
-	
+
 2010-09-28  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-act.c (encode_type): Do not add 'r' with the next runtime.
@@ -1274,7 +1274,7 @@ 
 	Encode C++ reference types as pointers.  Call encode_vector to
 	encode vectors.
 	(encode_vector): New function.
-	
+
 2010-09-27  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Merge from 'apple/trunk' branch on FSF servers.  I modified the
@@ -1282,10 +1282,10 @@ 

 	2005-10-10  Fariborz Jahanian <fjahanian@apple.com>

-        Radar 4301047
+	Radar 4301047

 	* objc-act.c (encode_type): Remove the hack.
-	
+
 	2005-07-20  Ziemowit Laski  <zlaski@apple.com>

 	Radar 4136935
@@ -1301,12 +1301,12 @@ 

 	Radar 4229905
 	* objc-act.c (objc_have_common_types): New function.
-	
+
 	2005-06-22  Ziemowit Laski  <zlaski@apple.com>

 	Radar 4154928
 	* objc-act.c (objc_common_type): New function.
-	
+
 2010-09-27  Richard Guenther  <rguenther@suse.de>

 	* objc-act.c (objc_get_class_reference): Use CP_TYPE_CONTEXT.
@@ -1330,14 +1330,14 @@ 
 	* objc-act.c (objc_get_interface_ivars): New function.
 	(objc_collecting_ivars): New variable.
 	(continue_class): Set and reset objc_collecting_ivars for context.
-	
+
 2010-09-15  Nicola Pero  <nicola.pero@meta-innovation.com>

 	Merge from 'apple/trunk' branch on FSF servers.

 	2006-03-09 Fariborz Jahanian <fjahanian@apple.com>

-        Radar 4457381
+	Radar 4457381
 	* objc/objc-act.c (objc_finish_message_expr): Look for message in
 	@class's protocol list.

@@ -1361,7 +1361,7 @@ 
 	* objc-act.c (objc_get_protocol_qualified_type): When looking
 	at a typedef, retrieve the precise type it describes (rather
 	than merely looking up a class by name).
-	
+
 2010-09-10  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc-act.c (objc_begin_try_stmt): Generate an error if
@@ -1377,17 +1377,17 @@ 
 	PR objc/44140
 	* objc-act.c: build_objc_string_decl() remove declaration.
 	(finish_var_decl): Remove forcing of var output and marking
-	as "Used". 
-	(init_def_list): Use integer_zero_node. 
+	as "Used".
+	(init_def_list): Use integer_zero_node.
 	(init_objc_symtab): Use integer_zero_node, make the short
 	integer type specific on relevant nodes.
-	(generate_objc_symtab_decl): Remove call to 
+	(generate_objc_symtab_decl): Remove call to
 	forward_declare_categories().  Use null_pointer_node where
-	appropriate.  
-	(build_module_descriptor): Comment and mark this item as 
-	DECL_PRESERVE_P. 
+	appropriate.
+	(build_module_descriptor): Comment and mark this item as
+	DECL_PRESERVE_P.
 	(generate_static_references): Use gcc_unreachable instead of
-	abort (). 
+	abort ().
 	(diagnose_missing_method): New.
 	(build_next_selector_translation_table): New.
 	(build_gnu_selector_translation_table): New.
@@ -1395,20 +1395,20 @@ 
 	... and delete build_objc_string_decl().
 	(generate_dispatch_table): Make integer types explicit.
 	(generate_category): Pass implent and arrange for the data
-	to be extracted within the routine.  Do not start new vars, 
+	to be extracted within the routine.  Do not start new vars,
 	but finish the ones collcted during parsing.
 	(generate_shared_structures): Likewise.
 	(finish_objc):  Reorder code so that we finish variables before
 	referencing them.  Save the global data before calling meta-data
-	creation routines, and pass the current reference to the two 
-	main routines.  Only call generate_objc_image_info () for the 
+	creation routines, and pass the current reference to the two
+	main routines.  Only call generate_objc_image_info () for the
 	NeXT runtime.
 	(generate_classref_translation_entry): Comment on and make this
 	item DECL_PRESERVE_P.
 	(handle_class_ref): Use varpool interfaces, comment on and make
 	this item DECL_PRESERVE_P.
 	(handle_impent): Likewise.
-	(generate_objc_image_info): Only generate when the content is 
+	(generate_objc_image_info): Only generate when the content is
 	non-zero.  Make integer types explict.

 2010-07-03  Nathan Froyd  <froydnj@codesourcery.com>
@@ -1601,10 +1601,10 @@ 
 2009-07-17  Aldy Hernandez  <aldyh@redhat.com>
 	    Manuel López-Ibáñez  <manu@gcc.gnu.org>

-	PR 40435 
+	PR 40435
 	* objc-act.c: Add location argument to all calls to
 	build_fold_addr_expr.
-	
+
 2009-07-14  Taras Glek  <tglek@mozilla.com>
 	    Rafael Espindola  <espindola@google.com>

@@ -1615,23 +1615,23 @@ 

 	* objc-act.c (next_sjlj_build_catch_list): Replace EXPR_LOCUS by
 	EXPR_LOCATION.
-	
+
 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>

 	* objc-act.c: Replace %J by an explicit location. Update all
 	calls.
-	
+
 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>

 	* objc-act.c: Replace %H by an explicit location. Update all
 	calls.
-	
+
 2009-06-22  Steven Bosscher  <steven@gcc.gnu.org>

 	PR objc/28050
 	* objc-act.c (objc_build_message_args): Return if ARGS is the
 	error_mark_node.
-	
+
 2009-06-19  Ian Lance Taylor  <iant@google.com>

 	* objc-act.c (objc_in_struct, objc_struct_types): Remove.
@@ -1646,7 +1646,7 @@ 
 	label_context_stack_se or label_context_stack_vm.

 2009-06-12  Aldy Hernandez  <aldyh@redhat.com>
-	
+
 	* objc-act.c (finish_var_decl): Pass location to finish_decl.
 	(objc_get_parm_info): Same.
 	(get_super_receiver): Same.
@@ -1672,7 +1672,7 @@ 
 	build_modify_expr, build_compound_expr.
 	* objc-act.c: Add location to all calls to start_struct, build_decl,
 	finish_struct.
-	
+
 2009-06-09  Ian Lance Taylor  <iant@google.com>

 	* objc-act.c (objc_gimplify_expr): Change return type to int.
@@ -1899,8 +1899,8 @@ 

 2008-05-12  Tomas Bily  <tbily@suse.cz>

-        * objc-act.c (objc_generate_write_barrier, objc_finish_message_expr):
-        Use CONVERT_EXPR_P.
+	* objc-act.c (objc_generate_write_barrier, objc_finish_message_expr):
+	Use CONVERT_EXPR_P.

 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>

@@ -2003,11 +2003,11 @@ 
 	(add_class): Likewise.

 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
-	
+
 	* objc-act.c (objc_build_volatilized_type): Keep track of
 	canonical types.
 	(objc_get_protocol_qualified_type): Ditto.
-	
+
 2006-11-02  Andreas Tobler  <a.tobler@schweiz.org>

 	* objc-act.c (objc_finish_file): Remove ifdef clause for OBJCPLUS and
diff --git a/gcc/objcp/ChangeLog b/gcc/objcp/ChangeLog
index c8d697c..9a52b37 100644
--- a/gcc/objcp/ChangeLog
+++ b/gcc/objcp/ChangeLog
@@ -22,7 +22,7 @@ 
 	(LANG_HOOKS_EH_PERSONALITY): Removed.
 	(LANG_HOOKS_EH_RUNTIME_TYPE): Removed.
 	(objcp_eh_personality_decl): Removed.
-	
+
 2011-02-07  Mike Stump  <mikestump@comcast.net>

 	* Make-lang.in (obj-c++.tags): Don't include *.y.
@@ -62,9 +62,9 @@ 

 2010-10-14  Iain Sandoe  <iains@gcc.gnu.org>

-	merge from FSF apple 'trunk' branch. 
+	merge from FSF apple 'trunk' branch.
 	2006 Fariborz Jahanian <fjahanian@apple.com>
-	
+
 	Radars 4436866, 4505126, 4506903, 4517826
 	* objcp-lang.c (objcxx_init_ts): Update for property_decl.

@@ -82,7 +82,7 @@ 

 	* Make-lang.in (cc1objplus-dummy): Remove.
 	(cc1objplus-checksum): Change to run checksum over object files
-        and options only.
+	and options only.

 2010-10-04  Andi Kleen <ak@linux.intel.com>

@@ -96,7 +96,7 @@ 

 2010-09-21  Nicola Pero  <nicola.pero@meta-innovation.com>

-	PR objc/25965	
+	PR objc/25965
 	* objcp-decl.c (objcp_finish_struct): Call
 	objc_get_interface_ivars() and check for duplicate ivars.

@@ -230,13 +230,13 @@ 

 	2008-02-07  Andreas Tobler  <andreast-list@fgznet.ch>
 	            Douglas Gregor  <doug.gregor@gmail.com>
- 
+
 	PR bootstrap/35115
 	* objcp-decl.c (objcp_comptypes): Call cp_comptypes, not comptypes.

 2008-02-07  Andreas Tobler  <andreast-list@fgznet.ch>
-            Douglas Gregor  <doug.gregor@gmail.com>
- 
+	    Douglas Gregor  <doug.gregor@gmail.com>
+
 	PR bootstrap/35115
 	* objcp-decl.c (objcp_comptypes): Call cp_comptypes, not comptypes.

@@ -361,7 +361,7 @@ 
 	    Mike Stump  <mrs@apple.com>

 	Yet more Objective-C++...
-	
+
 	* Make-lang.in (objcp/objcp-lang.o): Add tree-gimple.h
 	(objcp/objcp-decl.o): Likewise.
 	(objcp/objcp-act.o): Likewise.
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
index 9538e9e..e0655e4 100644
--- a/gcc/po/ChangeLog
+++ b/gcc/po/ChangeLog
@@ -309,7 +309,7 @@ 

 2010-01-11  Joseph Myers  <joseph@codesourcery.com>
 	    Shujing Zhao  <pearly.zhao@oracle.com>
-	    
+
 	PR translation/42467
 	* exgettext: Keep the text before tab character in the option help
 	string at *.opt file.
@@ -1396,7 +1396,7 @@  Thu Nov 30 01:28:08 2000  Jeffrey A Law  (law@cygnus.com)

 2000-07-13  Nick Clifton  <nickc@cygnus.com>

- 	* POTFILES.in: Add new gcc files.
+	* POTFILES.in: Add new gcc files.

 2000-06-27  Philipp Thomas  <pthomas@suse.de>

diff --git a/include/ChangeLog b/include/ChangeLog
index c4ec00e..7f3c860 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -28,7 +28,7 @@ 

 	* simple-object.h: New file.

-2010-10-15  Dave Korn  <dave.korn.cygwin@gmail.com> 
+2010-10-15  Dave Korn  <dave.korn.cygwin@gmail.com>

 	Sync LD plugin patch series (part 1/6) with src/include/.
 	* plugin-api.h (LDPT_GNU_LD_VERSION): New ld_plugin_tag enum member.
@@ -302,11 +302,11 @@ 

 2008-12-10  Jason Merrill  <jason@redhat.com>

-	* demangle.h (enum demangle_component_type): Add 
+	* demangle.h (enum demangle_component_type): Add
 	DEMANGLE_COMPONENT_FIXED_TYPE.

 2008-11-19  Bob Wilson  <bob.wilson@acm.org>
-	
+
 	* xtensa-config.h (XCHAL_HAVE_MUL16, XCHAL_HAVE_MUL32, XCHAL_HAVE_DIV32)
 	(XCHAL_HAVE_MINMAX, XCHAL_HAVE_SEXT, XCHAL_HAVE_THREADPTR)
 	(XCHAL_HAVE_RELEASE_SYNC, XCHAL_HAVE_S32C1I): Change to 1.
@@ -316,7 +316,7 @@ 
 	(XCHAL_ICACHE_LINEWIDTH, XCHAL_DCACHE_LINEWIDTH): Change to 5.
 	(XCHAL_DCACHE_IS_WRITEBACK): Change to 1.
 	(XCHAL_DEBUGLEVEL): Change to 6.
-	
+
 2008-10-21  Alan Modra  <amodra@bigpond.net.au>

 	* obstack.h (obstack_finish <!__GNUC__>): Cast result to void *.
@@ -381,19 +381,19 @@ 
 	* libiberty.h (pex_free): Document process killing.

 2007-08-31  Douglas Gregor  <doug.gregor@gmail.com>
-	
+
 	* demangle.h (enum demangle_component_type): Add
-	DEMANGLE_COMPONENT_RVALUE_REFERENCE. 
+	DEMANGLE_COMPONENT_RVALUE_REFERENCE.

 2007-07-25  Ben Elliston  <bje@au.ibm.com>

 	* ternary.h: Remove.

 2007-07-18  Bob Wilson  <bob.wilson@acm.org>
-	
+
 	* xtensa-config.h (XCHAL_HAVE_THREADPTR): New.
 	(XCHAL_HAVE_RELEASE_SYNC, XCHAL_HAVE_S32C1I): New.
-	
+
 2007-07-17  Nick Clifton  <nickc@redhat.com>

 	* COPYING3: New file.  Contains version 3 of the GNU General
@@ -403,7 +403,7 @@ 

 	* splay-tree.h (libi_uhostptr_t, libi_shostptr_t): New types,
 	needed for WIN64 when a long is not wide enough for a pointer.
-        (splay_tree_key, splay_tree_value): Use the new types.
+	(splay_tree_key, splay_tree_value): Use the new types.

 2007-05-07  Nathan Froyd  <froydnj@codesourcery.com>

@@ -419,7 +419,7 @@ 
 	regardless of the type of file system.

 2007-03-06  Jan Hubicka  <jh@suse.cz>
-	
+
 	* ansidecl.h (ATTRIBUTE_COLD, ATTRIBUTE_HOT): New.

 2007-02-09  Joseph S. Myers  <joseph@codesourcery.com>
@@ -427,7 +427,7 @@ 
 	* libiberty.h (pex_write_input): Remove prototype.

 2007-01-31  Vladimir Prus  <vladimir@codesourcery.com>
-	
+
 	* libiberty.h (PEX_STDERR_TO_PIPE): New define.
 	(PEX_BINARY_ERROR): New define.
 	(pex_read_err): New function.
@@ -443,7 +443,7 @@ 
 	* ansidecl.h (ATTRIBUTE_PACKED): Define.

 2006-11-30  Andrew Stubbs  <andrew.stubbs@st.com>
-            J"orn Rennecke <joern.rennecke@st.com>
+	    J"orn Rennecke <joern.rennecke@st.com>

 	PR driver/29931
 	* libiberty.h (make_relative_prefix_ignore_links): Declare.
@@ -509,13 +509,13 @@ 
 	(md5_ctx): Align buffer field.

 2005-06-30  Daniel Berlin  <dberlin@dberlin.org>
-	
+
 	* hashtab.h (HTAB_DELETED_ENTRY): New macro.
 	(HTAB_EMPTY_ENTRY): New macro.

 2005-06-20  Geoffrey Keating  <geoffk@apple.com>

-	* libiberty.h (strverscmp): Prototype. 
+	* libiberty.h (strverscmp): Prototype.

 2005-06-06  Gabriel Dos Reis  <gdr@integrable-solutions.net>

diff --git a/libada/ChangeLog b/libada/ChangeLog
index 3217128..46996c4 100644
--- a/libada/ChangeLog
+++ b/libada/ChangeLog
@@ -53,12 +53,12 @@ 

 2009-04-06  Laurent GUERBY  <laurent@guerby.net>

-        * Makefile.in (ADA_RTS_DIR): Define.
-        * Makefile.in (gnatlib-*): Link adainclude and adalib to it.
+	* Makefile.in (ADA_RTS_DIR): Define.
+	* Makefile.in (gnatlib-*): Link adainclude and adalib to it.

 2008-09-21  Laurent Guerby  <laurent@guerby.net>
-            Paolo Bonzini  <bonzini@gnu.org>
-	
+	    Paolo Bonzini  <bonzini@gnu.org>
+
 	PR ada/5911
 	* Makefile.in (all, install, mostlyclean, clean, distclean): Add
 	multilib handling.
@@ -66,7 +66,7 @@ 
 	* configure: Regenerate.

 2008-08-29  Laurent Guerby  <laurent@guerby.net>
-	
+
 	* Makefile.in (FLAGS_TO_PASS): renamed to LIBADA_FLAGS_TO_PASS to
 	avoid conflicts. Factor more flags to pass.
 	(libsubdir): New variable.
@@ -75,7 +75,7 @@ 
 2008-08-28  Laurent Guerby  <laurent@guerby.net>

 	* configure: Regenerate.
-	
+
 2008-08-06  Thomas Quinot  <quinot@adacore.com>

 	* Makefile.in: generate s-oscons.ads again, previous change was
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index e90f753..7e5aa44 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,5 +1,5 @@ 
 2011-11-04  Eric Botcazou  <ebotcazou@adacore.com>
-            Jakub Jelinek  <jakub@redhat.com>
+	    Jakub Jelinek  <jakub@redhat.com>

 	PR preprocessor/39213
 	* directives.c (end_directive): Call _cpp_remove_overlay for deferred
@@ -752,7 +752,7 @@ 
 	* directives-only.c (_cpp_preprocess_dir_only): Likewise.
 	* internal.h (CPP_INCREMENT_LINE): Likewise.
 	* lex.c (_cpp_skip_block_comment): Use source_location.
-	
+
 2008-07-14  Ben Elliston  <bje@au.ibm.com>

 	* include/cpplib.h (NODE_CONDITIONAL): New.
@@ -1018,7 +1018,7 @@ 

 	PR preprocessor/30363
 	* traditional.c (replace_args_and_push): Add local variable
-	cxtquote, calculate the replacement text size assuming a 
+	cxtquote, calculate the replacement text size assuming a
 	worst case of every input character quoted with backslash,
 	and properly handle output quoting of quote characters in
 	actual arguments used in function-like macros.
@@ -1172,8 +1172,8 @@ 
 2007-06-09  Vladimir Prus  <vladimir@codesourcery.com>

 	* files.c (open_file): Account for the
-        fact that on windows, opening a directory gives
-        EACCES.
+	fact that on windows, opening a directory gives
+	EACCES.

 2007-06-05  Joerg Wunsch  <j.gnu@uriah.heep.sax.de>

@@ -1225,7 +1225,7 @@ 

 2007-05-14  Janis Johnson  <janis187@us.ibm.com>

-        * expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
+	* expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.

 	PR c/31924
 	* expr.c (interpret_float_suffix): Check for invalid suffix.
diff --git a/libdecnumber/ChangeLog b/libdecnumber/ChangeLog
index 101cda9..650b691 100644
--- a/libdecnumber/ChangeLog
+++ b/libdecnumber/ChangeLog
@@ -10,7 +10,7 @@ 

 2010-09-10  Kai Tietz  <kai.tietz@onevision.com>

-       * configure: Regenerated.
+	* configure: Regenerated.

 2010-09-08  Tristan Gingold  <gingold@adacore.com>

@@ -149,7 +149,7 @@ 

 2009-04-01  Ben Elliston  <bje@au.ibm.com>

-        * decContext.h: Include gstdint.h instead of <stdint.h>.
+	* decContext.h: Include gstdint.h instead of <stdint.h>.

 2009-03-30  Ben Elliston  <bje@au.ibm.com>

@@ -401,7 +401,7 @@ 

 	* Makefile.in: Don't include decRound in library used by compiler.

-2006-10-10  Brooks Moses  <bmoses@stanford.edu> 
+2006-10-10  Brooks Moses  <bmoses@stanford.edu>
 	* Makefile.in: Added empty "pdf" target.

 2006-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
@@ -496,11 +496,11 @@ 

 2006-01-02  Paolo Bonzini  <bonzini@gnu.org>

-        PR target/25259
-        * configure.ac: Use GCC_HEADER_STDINT.
-        * decContext.h: Include gstdint.h.
-        * aclocal.m4: Regenerate.
-        * configure: Regenerate.
+	PR target/25259
+	* configure.ac: Use GCC_HEADER_STDINT.
+	* decContext.h: Include gstdint.h.
+	* aclocal.m4: Regenerate.
+	* configure: Regenerate.

 2005-12-20  Roger Sayle  <roger@eyesopen.com>

@@ -539,7 +539,7 @@ 
 	* decimal32.c: Ditto.
 	* decimal64.c: Ditto.
 	* decimal128.c: Ditto.
-	
+
 2005-11-29  Ben Elliston  <bje@au.ibm.com>

 	* decUtility.c: Remove redundant #includes.
@@ -556,7 +556,7 @@ 
 2005-11-29  Ben Elliston  <bje@au.ibm.com>

 	* decimal32.h, decimal64.h, decimal128.h: New.
-        * decimal32.c, decimal64.c, decimal128.c: Likewise.
+	* decimal32.c, decimal64.c, decimal128.c: Likewise.
 	* decContext.c, decContext.h: Likewise.
 	* decUtility.c, decUtility.h: Likewise.
 	* decNumber.c, decNumber.h, decNumberLocal.h: Likewise.
diff --git a/libffi/ChangeLog b/libffi/ChangeLog
index 7834697..0cbd779 100644
--- a/libffi/ChangeLog
+++ b/libffi/ChangeLog
@@ -709,74 +709,74 @@ 
 	testsuite/libffi.call/cls_2byte.c,
 	testsuite/libffi.call/cls_3_1byte.c,
 	testsuite/libffi.call/cls_3byte1.c,
- 	testsuite/libffi.call/cls_3byte2.c,
- 	testsuite/libffi.call/cls_4_1byte.c,
- 	testsuite/libffi.call/cls_4byte.c,
- 	testsuite/libffi.call/cls_5_1_byte.c,
- 	testsuite/libffi.call/cls_5byte.c,
- 	testsuite/libffi.call/cls_64byte.c,
- 	testsuite/libffi.call/cls_6_1_byte.c,
- 	testsuite/libffi.call/cls_6byte.c,
- 	testsuite/libffi.call/cls_7_1_byte.c,
- 	testsuite/libffi.call/cls_7byte.c,
- 	testsuite/libffi.call/cls_8byte.c,
- 	testsuite/libffi.call/cls_9byte1.c,
- 	testsuite/libffi.call/cls_9byte2.c,
- 	testsuite/libffi.call/cls_align_double.c,
- 	testsuite/libffi.call/cls_align_float.c,
- 	testsuite/libffi.call/cls_align_longdouble.c,
- 	testsuite/libffi.call/cls_align_longdouble_split.c,
- 	testsuite/libffi.call/cls_align_longdouble_split2.c,
- 	testsuite/libffi.call/cls_align_pointer.c,
- 	testsuite/libffi.call/cls_align_sint16.c,
- 	testsuite/libffi.call/cls_align_sint32.c,
- 	testsuite/libffi.call/cls_align_sint64.c,
- 	testsuite/libffi.call/cls_align_uint16.c,
- 	testsuite/libffi.call/cls_align_uint32.c,
- 	testsuite/libffi.call/cls_align_uint64.c,
- 	testsuite/libffi.call/cls_dbls_struct.c,
- 	testsuite/libffi.call/cls_double.c,
- 	testsuite/libffi.call/cls_double_va.c,
- 	testsuite/libffi.call/cls_float.c,
- 	testsuite/libffi.call/cls_longdouble.c,
- 	testsuite/libffi.call/cls_longdouble_va.c,
- 	testsuite/libffi.call/cls_multi_schar.c,
- 	testsuite/libffi.call/cls_multi_sshort.c,
- 	testsuite/libffi.call/cls_multi_sshortchar.c,
- 	testsuite/libffi.call/cls_multi_uchar.c,
- 	testsuite/libffi.call/cls_multi_ushort.c,
- 	testsuite/libffi.call/cls_multi_ushortchar.c,
- 	testsuite/libffi.call/cls_pointer.c,
- 	testsuite/libffi.call/cls_pointer_stack.c,
- 	testsuite/libffi.call/cls_schar.c,
- 	testsuite/libffi.call/cls_sint.c,
- 	testsuite/libffi.call/cls_sshort.c,
- 	testsuite/libffi.call/cls_uchar.c,
- 	testsuite/libffi.call/cls_uint.c,
- 	testsuite/libffi.call/cls_ulonglong.c,
- 	testsuite/libffi.call/cls_ushort.c,
- 	testsuite/libffi.call/err_bad_abi.c,
- 	testsuite/libffi.call/err_bad_typedef.c,
- 	testsuite/libffi.call/float2.c,
- 	testsuite/libffi.call/huge_struct.c,
- 	testsuite/libffi.call/nested_struct.c,
- 	testsuite/libffi.call/nested_struct1.c,
- 	testsuite/libffi.call/nested_struct10.c,
- 	testsuite/libffi.call/nested_struct2.c,
- 	testsuite/libffi.call/nested_struct3.c,
- 	testsuite/libffi.call/nested_struct4.c,
- 	testsuite/libffi.call/nested_struct5.c,
- 	testsuite/libffi.call/nested_struct6.c,
- 	testsuite/libffi.call/nested_struct7.c,
- 	testsuite/libffi.call/nested_struct8.c,
- 	testsuite/libffi.call/nested_struct9.c,
- 	testsuite/libffi.call/problem1.c,
- 	testsuite/libffi.call/return_ldl.c,
- 	testsuite/libffi.call/return_ll1.c,
- 	testsuite/libffi.call/stret_large.c,
- 	testsuite/libffi.call/stret_large2.c,
- 	testsuite/libffi.call/stret_medium.c,
- 	testsuite/libffi.call/stret_medium2.c,
+	testsuite/libffi.call/cls_3byte2.c,
+	testsuite/libffi.call/cls_4_1byte.c,
+	testsuite/libffi.call/cls_4byte.c,
+	testsuite/libffi.call/cls_5_1_byte.c,
+	testsuite/libffi.call/cls_5byte.c,
+	testsuite/libffi.call/cls_64byte.c,
+	testsuite/libffi.call/cls_6_1_byte.c,
+	testsuite/libffi.call/cls_6byte.c,
+	testsuite/libffi.call/cls_7_1_byte.c,
+	testsuite/libffi.call/cls_7byte.c,
+	testsuite/libffi.call/cls_8byte.c,
+	testsuite/libffi.call/cls_9byte1.c,
+	testsuite/libffi.call/cls_9byte2.c,
+	testsuite/libffi.call/cls_align_double.c,
+	testsuite/libffi.call/cls_align_float.c,
+	testsuite/libffi.call/cls_align_longdouble.c,
+	testsuite/libffi.call/cls_align_longdouble_split.c,
+	testsuite/libffi.call/cls_align_longdouble_split2.c,
+	testsuite/libffi.call/cls_align_pointer.c,
+	testsuite/libffi.call/cls_align_sint16.c,
+	testsuite/libffi.call/cls_align_sint32.c,
+	testsuite/libffi.call/cls_align_sint64.c,
+	testsuite/libffi.call/cls_align_uint16.c,
+	testsuite/libffi.call/cls_align_uint32.c,
+	testsuite/libffi.call/cls_align_uint64.c,
+	testsuite/libffi.call/cls_dbls_struct.c,
+	testsuite/libffi.call/cls_double.c,
+	testsuite/libffi.call/cls_double_va.c,
+	testsuite/libffi.call/cls_float.c,
+	testsuite/libffi.call/cls_longdouble.c,
+	testsuite/libffi.call/cls_longdouble_va.c,
+	testsuite/libffi.call/cls_multi_schar.c,
+	testsuite/libffi.call/cls_multi_sshort.c,
+	testsuite/libffi.call/cls_multi_sshortchar.c,
+	testsuite/libffi.call/cls_multi_uchar.c,
+	testsuite/libffi.call/cls_multi_ushort.c,
+	testsuite/libffi.call/cls_multi_ushortchar.c,
+	testsuite/libffi.call/cls_pointer.c,
+	testsuite/libffi.call/cls_pointer_stack.c,
+	testsuite/libffi.call/cls_schar.c,
+	testsuite/libffi.call/cls_sint.c,
+	testsuite/libffi.call/cls_sshort.c,
+	testsuite/libffi.call/cls_uchar.c,
+	testsuite/libffi.call/cls_uint.c,
+	testsuite/libffi.call/cls_ulonglong.c,
+	testsuite/libffi.call/cls_ushort.c,
+	testsuite/libffi.call/err_bad_abi.c,
+	testsuite/libffi.call/err_bad_typedef.c,
+	testsuite/libffi.call/float2.c,
+	testsuite/libffi.call/huge_struct.c,
+	testsuite/libffi.call/nested_struct.c,
+	testsuite/libffi.call/nested_struct1.c,
+	testsuite/libffi.call/nested_struct10.c,
+	testsuite/libffi.call/nested_struct2.c,
+	testsuite/libffi.call/nested_struct3.c,
+	testsuite/libffi.call/nested_struct4.c,
+	testsuite/libffi.call/nested_struct5.c,
+	testsuite/libffi.call/nested_struct6.c,
+	testsuite/libffi.call/nested_struct7.c,
+	testsuite/libffi.call/nested_struct8.c,
+	testsuite/libffi.call/nested_struct9.c,
+	testsuite/libffi.call/problem1.c,
+	testsuite/libffi.call/return_ldl.c,
+	testsuite/libffi.call/return_ll1.c,
+	testsuite/libffi.call/stret_large.c,
+	testsuite/libffi.call/stret_large2.c,
+	testsuite/libffi.call/stret_medium.c,
+	testsuite/libffi.call/stret_medium2.c,
 	testsuite/libffi.special/unwindtest.cc: use ffi_closure_alloc instead
 	of checking for MMAP.  Use intptr_t instead of long casts.

diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 4092218..5f13205 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -114,7 +114,7 @@ 
 2010-09-09  Gerald Pfeifer  <gerald@pfeifer.com>
 	    Andrew Pinski  <pinskia@gmail.com>

-	PR target/40959	
+	PR target/40959
 	* config.host (ia64*-*-freebsd*): Set extra_parts.  Set tmake_file.

 2010-09-06  H.J. Lu  <hongjiu.lu@intel.com>
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index f7a5982..6393dda 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -98,7 +98,7 @@ 
 	    Tobias Burnus  <burnus@net-b.de>

 	PR fortran/32049
-	* configure.ac: 
+	* configure.ac:
 	* configure: Regenerate.

 2010-10-06  Marcus Shawcroft  <marcus.shawcroft@arm.com>
@@ -862,7 +862,7 @@ 
 	(gomp_new_thread_pool, gomp_free_pool_helper, gomp_free_thread): New
 	functions.
 	(gomp_team_start): Create new pool if current thread doesn't have
-	one.  Use pool fields instead of global gomp_* variables. 
+	one.  Use pool fields instead of global gomp_* variables.
 	Initialize thread_pool field for new threads.  Clear single_count.
 	Change last argument from ws to team, don't create
 	new team, set ts.work_share to &team->work_shares[0] and clear
@@ -1094,7 +1094,7 @@ 
 	inlines.
 	* config/posix/bar.c (gomp_barrier_init): Clear generation field.
 	(gomp_barrier_wait_end): Change second argument to
-	gomp_barrier_state_t. 
+	gomp_barrier_state_t.
 	(gomp_team_barrier_wait, gomp_team_barrier_wait_end,
 	gomp_team_barrier_wake): New functions.
 	* config/linux/mutex.c: Include wait.h instead of libgomp.h and
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index dc92638..3ad5697 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -475,7 +475,7 @@ 

 2009-05-29  Kai Tietz  <kai.tietz@onevision.com>

-        * pex-win32.c (pex_win32_fdopenr): Set INHERIT to false.
+	* pex-win32.c (pex_win32_fdopenr): Set INHERIT to false.

 2009-05-29  Michael Matz  <matz@suse.de>

@@ -506,7 +506,7 @@ 

 2009-04-29  Julian Brown  <julian@codesourcery.com>

-	* pex-win32.c (pex_win32_pipe): Add _O_NOINHERIT.    
+	* pex-win32.c (pex_win32_pipe): Add _O_NOINHERIT.
 	(pex_win32_exec_child): Ensure each process has only one handle open
 	on pipe endpoints. Close standard input after creating child for
 	symmetry with standard output/standard error.
@@ -524,22 +524,22 @@ 
 	section, so that the native build does detect them at configure
 	time.
 	* configure: Regenerated.
-	
+
 2009-04-13  Ozkan Sezer  <sezeroz@gmail.com>

-        PR target/39397
-        * pex-common.h (struct pex_obj): Store pid values as pid_t,
-        not as long (members *children and (*wait))
-        * pex-common.c (pex_run_in_environment): Likewise.
-        * pex-win32.c (pex_win32_wait): Return pid_t and properly check
-        returned pid value.
-        * pex-djgpp.c (pex_djgpp_wait): Return pid_t.
-        * pex-msdos.c (pex_msdos_wait): Likewise.
+	PR target/39397
+	* pex-common.h (struct pex_obj): Store pid values as pid_t,
+	not as long (members *children and (*wait))
+	* pex-common.c (pex_run_in_environment): Likewise.
+	* pex-win32.c (pex_win32_wait): Return pid_t and properly check
+	returned pid value.
+	* pex-djgpp.c (pex_djgpp_wait): Return pid_t.
+	* pex-msdos.c (pex_msdos_wait): Likewise.

 2009-04-07  Arnaud Patard <apatard@mandriva.com>

-       * libiberty/configure.ac: Fix Linux/MIPS matching rule.
-       * libiberty/configure: Regenerate.
+	* libiberty/configure.ac: Fix Linux/MIPS matching rule.
+	* libiberty/configure: Regenerate.

 2009-03-27  Ian Lance Taylor  <iant@google.com>

@@ -624,7 +624,7 @@ 
 2008-10-08  David Edelsohn  <edelsohn@gnu.org>

 	* xstrdup.c: Include <sys/types.h> after "config.h"
- 
+
 2008-10-07  Jan Kratochvil  <jan.kratochvil@redhat.com>

 	* configure.ac: Call AC_SYS_LARGEFILE.
diff --git a/libmudflap/ChangeLog b/libmudflap/ChangeLog
index 920c73e..8c1ebf0 100644
--- a/libmudflap/ChangeLog
+++ b/libmudflap/ChangeLog
@@ -198,7 +198,7 @@ 
 	* testsuite/libmudflap.c++/pass66-frag.cxx: New test.

 2008-09-26  Peter O'Gorman  <pogma@thewrittenword.com>
-            Steve Ellcey  <sje@cup.hp.com>
+	    Steve Ellcey  <sje@cup.hp.com>

 	* configure: Regenerate for new libtool.
 	* Makefile.in: Ditto.
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog
index 485d2a4..b473476 100644
--- a/libobjc/ChangeLog
+++ b/libobjc/ChangeLog
@@ -1,9 +1,9 @@ 
 2011-02-28  Nicola Pero  <nicola.pero@meta-innovation.com>
-	
+
 	* selector.c (sel_getTypedSelector): Return NULL if there are
 	multiple selectors with conflicting types.
 	* objc/runtime.h (sel_getTypedSelector): Updated documentation.
-	
+
 2011-02-28  Richard Frith-Macdonald <rfm@gnu.org>

 	PR libobjc/47922
@@ -24,7 +24,7 @@ 
 	(objc_tree_insert_class): Tidied up loop; return immediately upon
 	inserting a class.
 	(__objc_exec_class): Do not set __objc_class_tree_list.
-	
+
 2010-12-24  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* selector.c (sel_getTypedSelector): Return NULL if given a NULL
@@ -32,14 +32,14 @@ 
 	(sel_registerTypedName): Same.
 	(sel_registerName): Same.
 	* objc/runtime.h: Updated documentation.
-	
+
 2010-12-24  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/runtime.h (class_addIvar): Updated documentation.  The
 	alignment is actually the log_2 of the alignment in bytes.
 	* ivars.c (class_addIvar): Corresponding change to the
 	implementation.
-	
+
 2010-12-24  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/runtime.h (sel_getType): Renamed to sel_getTypeEncoding to
@@ -49,7 +49,7 @@ 
 	* selector.c (sel_getType): Renamed to sel_getTypeEncoding.
 	(sel_copyTypedSelectorList, sel_getTypedSelector): New.
 	(sel_get_type): Updated call to sel_getType.
-	
+
 2010-12-24  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/runtime.h (class_conformsToProtocol,
@@ -69,7 +69,7 @@ 
 	(__objc_update_dispatch_table_for_class): Added DEBUG_PRINTFs for
 	tracking updates of dispatch tables.
 	(__objc_install_dispatch_table_for_class): Same.
-	
+
 2010-12-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

 	* Makefile.in (libobjc$(libsuffix).la): Link with -Wc,-shared-libgcc.
@@ -119,14 +119,14 @@ 
 	* objc-private/runtime.h (__objc_add_class_to_hash): Updated
 	declaration.

-2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>	
+2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* init.c (_objc_load_callback): Initialize with 0.
 	(__objc_call_callback): Renamed to __objc_call_load_callback.
 	Check _objc_load_callback only once, and if it is not set, return
 	immediately.
 	(objc_send_load): Updated call to __objc_call_callback.
-	
+
 2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>

 	PR libobjc/16110
@@ -138,14 +138,14 @@ 
 	(__objc_create_classes_tree): Add the class of any claimed
 	category that was loaded in the module to the list of classes for
 	which we try to execute +load.
-	
+
 2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-private/common.h: When DEBUG is defined, include <stdio.h>.
 	Updated comments.
 	* init.c (__objc_tree_insert_class): Use %p, not %x, when printing
 	a pointer using DEBUG_PRINTF.
-	
+
 2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>

 	PR libobjc/45953
@@ -166,17 +166,17 @@ 
 	__sel_register_typed_name.
 	* selector.c (__objc_register_selectors_from_module): New.
 	(__sel_register_typed_name): Made static.
-	
+
 2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* linking.m: Do not include objc/NXConstStr.h.

 2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>
-	
+
 	* objc-private/runtime.h (DEBUG_PRINTF): Moved from here ...
 	* objc-private/common.h (DEBUG_PRINTF): To here.
 	* hash.c: Do not include objc-private/runtime.h and objc/thr.h.
-	
+
 2010-12-21  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* hash.c: Tidied up comments and indentation.  No code changes.
@@ -201,7 +201,7 @@ 
 	(__objc_print_dtable_stats): Removed.
 	(__sel_register_typed_name): Removed.
 	* sendmsg.c (__objc_print_dtable_stats): Use 'void' as argument.
-	
+
 2010-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* init.c (__objc_exec_class): Call __objc_resolve_class_links (),
@@ -215,7 +215,7 @@ 

 	* objc/message.h: Updated comments.
 	* objc/runtime.h: Updated comments.
-	
+
 2010-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* class.c (objc_lookupClass): Renamed to objc_lookUpClass.
@@ -231,7 +231,7 @@ 
 	* objc/runtime.h (class_ivar_set_gcinvisible): Declare.
 	* sendmsg.c (_CLS_IN_CONSTRUCTION, CLS_IS_IN_CONSTRUCTION): Do not
 	define.  Updated comments.
-	
+
 2010-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/encoding.h: Updated comments.
@@ -250,13 +250,13 @@ 
 	(objc_layout_structure_next_member): Same.
 	(objc_layout_finish_structure): Same.
 	(objc_layout_structure_get_info): Same.
-	
+
 2010-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* init.c: Updated comments.
 	* objc/objc-api.h: Updated comments.
 	* objc/runtime.h (_objc_load_callback): Declare.
-	
+
 2010-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/Object.h: Include deprecated/typedstream.h and
@@ -273,7 +273,7 @@ 
 	objc/deprecated/objc_msg_sendv.h instead.  Tidied up comments.
 	* sendmsg.c: Include objc/message.h.
 	* thr.c: Include objc/message.h.
-	
+
 2010-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc-exception.h: Include objc-decls.h.  Mark all
@@ -288,14 +288,14 @@ 
 	objc/deprecated/Protocol.h.  Include objc/deprecated/Protocol.h.
 	* objc/deprecated/Protocol.h: New.
 	* Makefile.in (OBJC_DEPRECATED_H): Added Protocol.h.
-	
+
 2010-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* init.c: Include objc-private/selector.h.  Do not declare
 	__sel_register_typed_name.
 	* objc-private/selector.h (__sel_register_typed_name): Declare.
 	* selector.c: Include objc-private/selector.h.
-	
+
 2010-12-18  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* class.c: Tidied up comments and indentation.  No code changes.
@@ -343,7 +343,7 @@ 
 	instead of 'Module_t'.  Use 'struct objc_symtab *' instead of
 	'Symtab_t'.  Use objc_getClass() instead of objc_lookup_class().
 	Use 'struct objc_category *' instead of 'Category_t'.
-	
+
 2010-12-16  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* sendmsg.c: Include objc/runtime.h instead of objc/objc-api.h.
@@ -365,7 +365,7 @@ 

 	* objc/message.h (objc_super): When using the modern API, do not
 	define Super and Super_t, and always use 'super_class' for the
-	super class field.	
+	super class field.
 	(objc_msg_lookup_super): Updated prototype to use 'struct
 	objc_super *' instead of 'Super_t'.
 	* sendmsg.c (objc_msg_lookup_super): Updated prototype to use
@@ -382,12 +382,12 @@ 
 	* ivars.c (class_addIvar): Use the 'size' argument instead of
 	trying to calculate it using objc_sizeof_type().
 	* objc/runtime.h (class_addIvar): Updated comments.
-	
+
 2010-12-15  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* sendmsg.c: Reindented some code and tidied up comments.  No
 	actual code changes.
-	
+
 2010-12-14  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/Object.h: Moved all the methods, with the exception of
@@ -411,7 +411,7 @@ 
 	(__objc_register_instance_methods_to_class): Use struct
 	objc_method_list * instead of MethodList_t and Method instead of
 	Method_t.
-	
+
 2010-12-14  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* selector.c: Reindented some code and tidied up comments.  No
@@ -431,19 +431,19 @@ 
 	(get_imp): Call __objc_resolve_class_method or
 	__objc_resolve_instance_method at the appropriate time.
 	(objc_msg_lookup): Same.
-	(class_getClassMethod): Same.	
+	(class_getClassMethod): Same.
 	(class_getInstanceMethod): Same.
 	(__objc_init_dispatch_tables): Initialize
 	selector_resolveClassMethod and selector_resolveInstanceMethod.
 	* objc/runtime.h: Updated documentation of class_getClassMethod,
 	class_getInstanceMethod and class_getMethodImplementation.
-	
+
 2010-12-11  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-private/module-abi-8.h (struct objc_symtab): Updated
 	description of sel_ref_cnt and refs.
 	* objc/deprecated/struct_objc_symtab.h (objc_symtab): Same change.
-	
+
 2010-12-06  Dave Korn  <dave.korn.cygwin@gmail.com>

 	PR target/40125
@@ -453,7 +453,7 @@ 
 	* aclocal.m4: Regenerate.
 	* configure: Regenerate.

-2010-12-03  Matthias Klose  <doko@ubuntu.com> 
+2010-12-03  Matthias Klose  <doko@ubuntu.com>

 	* configure.ac (VERSION): Bump the version to 3:0:0.
 	* configure: Regenerate.
@@ -463,7 +463,7 @@ 
 	* sendmsg.c (get_imp): Fixed call to __objc_get_forward_imp to
 	pass nil as the receiver since we don't know the receiver at this
 	point.
-	
+
 2010-11-18  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* ivars.c: Include stdlib.h.
@@ -525,7 +525,7 @@ 
 	* class.c (class_getSuperclass): Call __objc_resolve_class_links
 	if the class is not resolved yet.
 	* ivars.c (class_getInstanceVariable): Use class_getSuperclass.
-	
+
 2010-10-16  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/runtime.h (class_getIvarLayout): New.
@@ -535,10 +535,10 @@ 
 	* ivars.c (class_getIvarLayout): New.
 	(class_getWeakIvarLayout): New.
 	(class_setIvarLayout): New.
-	(class_setWeakIvarLayout): New.	
+	(class_setWeakIvarLayout): New.

 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>
-	
+
 	* objc/runtime.h (class_copyPropertyList): New.
 	(class_getProperty): New.
 	(property_getAttributes): New.
@@ -547,7 +547,7 @@ 
 	(class_getProperty): New.
 	(property_getAttributes): New.
 	(property_getName): New.
-	
+
 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-private/runtime.h (__objc_update_classes_with_methods): New.
@@ -557,7 +557,7 @@ 
 	(method_setImplementation): New.
 	* objc/runtime.h (method_setImplementation): New.
 	(method_exchangeImplementations): New.
-	
+
 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* Protocol.m: Include objc/runtime.h and
@@ -573,7 +573,7 @@ 
 	to compare selectors directly instead of getting names and then
 	using strcmp.
 	* objc/Protocol.h: Updated comments.
-	
+
 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* init.c (__objc_init_protocol): New function which fixes up a
@@ -594,7 +594,7 @@ 
 	* protocols.c (protocol_getMethodDescription): Same change.
 	* objc/runtime.h: Updated comments.
 	(sel_registerTypedName): Fixed typo in function name.
-	
+
 2010-10-13  Nicola Pero  <nicola.pero@meta-innovation.com>

 	PR libobjc/23214
@@ -621,7 +621,7 @@ 
 	(method_getReturnType): New.
 	(method_getArgumentType): New.
 	(method_getDescription): New.
-	
+
 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* encoding.c: Tidied up comments.
@@ -638,8 +638,8 @@ 
 	there is no offset: check that the first offset digit is actually
 	a digit before skipping it.
 	(objc_skip_type_qualifiers): Mark as inline.
-	(objc_skip_typespec): Mark as inline.	
-	
+	(objc_skip_typespec): Mark as inline.
+
 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* Makefile.in (C_SOURCE_FILES): Added methods.c.
@@ -670,7 +670,7 @@ 
 	(method_getTypeEncoding): New.
 	(class_copyMethodList): New.
 	(method_getNumberOfArguments): New.
-	
+
 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* class.c: Include objc/runtime.h and objc-private/module-abi-8.h
@@ -734,7 +734,7 @@ 
 	* sarray.c: Include objc/runtime.h instead of objc/objc-api.h.  Do
 	not include objc/objc.h.
 	* selector.c: Do not include objc/objc.h.
-	* sendmsg.c: Do not include objc/objc.h.	
+	* sendmsg.c: Do not include objc/objc.h.
 	* thr.c: Include objc/runtime.h instead of objc/objc-api.h.
 	Do not include objc/objc.h.
 	* objc/objc-decls.h: Reindented code.
@@ -745,7 +745,7 @@ 
 	(objc_realloc): New.
 	(objc_free): New.
 	* objc-private/runtime.h: Updated comments.
-	
+
 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* Makefile.in (C_SOURCE_FILES): Added protocols.c.
@@ -778,7 +778,7 @@ 
 	(protocol_copyProtocolList): New.
 	* class.c (class_getName): New.
 	* selector.c (sel_isEqual): New.
-	
+
 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* selector.c (sel_getName): Return "<null selector>" for a NULL
@@ -790,7 +790,7 @@ 
 	removed.
 	(module_hash_table): Same.
 	* objc/deprecated/hash.h: Same changes.
-	
+
 2010-10-11  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* class.c (objc_getClassList): New.
@@ -814,7 +814,7 @@ 
 	* objc-private/runtime.h: Use __objc_private_runtime_INCLUDE_GNU
 	instead of __objc_runtime_INCLUDE_GNU as include guard.
 	* objc-private/error.h (_objc_abort): Mark as noreturn.
-	
+
 2010-10-11  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* Makefile.in (C_SOURCE_FILES): Added ivars.c.
@@ -828,14 +828,14 @@ 
 	(object_getInstanceVariable): New.
 	(object_setInstanceVariable): New.
 	(object_getIvar): New.
-	(object_setIvar): New.	
+	(object_setIvar): New.
 	(ivar_getName): New.
 	(ivar_getOffset): New.
 	(ivar_getTypeEncoding): New.
 	* objc-private/module-abi-8.h (struct objc_class): Added.
 	* objects.c (object_getClassName): New.
 	(object_setClass): New.
-	
+
 2010-10-11  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc.h: Updated comments.
@@ -880,7 +880,7 @@ 
 	(sel_register_typed_name): Call sel_registerTypedName.
 	(sel_getUid): New.
 	(sel_get_uid): Call sel_getUid.
-	
+
 2010-10-10  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc-api.h: Define Method, Method_t, Category and
@@ -904,7 +904,7 @@ 
 	objc_layout_structure_next_member, objc_layout_finish_structure,
 	objc_layout_structure_get_info.  Prevent including this file at
 	the same time as objc/objc-api.h.
-	
+
 2010-10-10  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* Makefile.in (OBJC_DEPRECATED_H): Added struct_objc_category.h,
@@ -968,7 +968,7 @@ 
 	(OBJC_H): Added runtime.h
 	* objc-foreach.c: New file.
 	* objc/runtime.h: New file.
-	
+
 2010-09-30  Kai Tietz  <kai.tietz@onevision.com>

 	* objc/deprecated/struct_objc_class.h: Add padding
@@ -977,13 +977,13 @@ 
 2010-09-26  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* encoding.c (objc_sizeof_type): Added support for vector type and
-	for double long types.	
+	for double long types.
 	(objc_alignof_type): Same change.
 	(objc_skip_typespec): Same change.
 	* objc/encoding.h (_C_GCINVISIBLE): Use '|' for _C_GCINVISIBLE
 	instead of '!' since '!' is already used for _C_VECTOR.
 	* objc/objc-api.h (_C_LNG_DBL): Added.
-	
+
 2010-09-26  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* libobjc_entry.c: File removed.
@@ -1027,14 +1027,14 @@ 
 	objc/sarray.h.
 	* sendmsg.c: Include <assert.h>.  Include objc-private/sarray.h
 	instead of objc/sarray.h.
-	* Makefile.in (OBJC_DEPRECATED_H): Added sarray.h.	
+	* Makefile.in (OBJC_DEPRECATED_H): Added sarray.h.

 2010-09-17  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc-private/objc-list.h (list_remove_elem): Unused function
 	removed.  (list_nth): Unused function removed.  (list_find):
 	Unused function removed.  (list_lenght): Unused function removed.
-	
+
 2010-09-17  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/hash.h: Moved into objc/deprecated/hash.h; objc/hash.h
@@ -1072,7 +1072,7 @@ 
 	* acinclude.m4: Include ../config/enable.m4 and ../config/tls.m4.
 	* configure: Regenerated.
 	* config.h.in: Regenerated.
-	
+
 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* Makefile.in (%_gc.lo): New pattern rules to build the
@@ -1084,16 +1084,16 @@ 
 	(INCLUDES): Removed the unused include -I$(srcdir)/objc.

 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
-	
+
 	* memory.c (objc_calloc): Fixed call to GC_malloc when building
 	with Garbage Colletion.
-	
+
 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* memory.c: Do not include objc-private/runtime.h.

 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
-	
+
 	* objc/deprecated/objc_malloc.h: New file.
 	* objc/deprecated/objc_valloc.h: New file.
 	* objc/objc-api.h: Include the files instead of defining
@@ -1104,8 +1104,8 @@ 
 	and similar.
 	(objc_calloc): Use GC_malloc in the garbage-collected
 	implementation as GC_malloc returns memory that is already freed.
-	(objc_valloc): Deprecated.	
-	
+	(objc_valloc): Deprecated.
+
 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/deprecated/objc_error.h: New file.
@@ -1132,7 +1132,7 @@ 
 	(misc_gc.lo): Rule removed.
 	(error_gc.lo): Rule added.
 	(memory_gc.lo): Rule added.
-	
+
 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc.h (__GNU_LIBOBJC__): New #define providing an easy way
@@ -1192,7 +1192,7 @@ 
 	* selector.c: Same change.
 	* sendmsg.c: Same change.
 	* thr.c: Same change.
-	
+
 2010-09-11  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/deprecated/struct_objc_selector.h: New file.  Definition of
@@ -1203,7 +1203,7 @@ 
 	'struct objc_class' moved here.
 	* objc/deprecated/MetaClass.h: New file.  Definition of MetClass
 	moved here.
-	* objc/deprecated/STR.h: New file.  Definition of STR moved here.	
+	* objc/deprecated/STR.h: New file.  Definition of STR moved here.
 	* objc/message.h: New file.  Definitions for relval_t, apply_t,
 	arglist, arglist_t and objc_msg_lookup were moved here.
 	* objc/objc.h: Include the above files instead of defining the
@@ -1220,7 +1220,7 @@ 
 	* objc/objc-exception.h: Updated comments.
 	* Makefile.in (OBJC_H, OBJC_DEPRECATED_H): Added the new header
 	files.  Reindented list of files.
-	
+
 2010-09-10  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc-api.h (objc_trace): Unused variable removed.
@@ -1234,7 +1234,7 @@ 
 	objc/typedstream.h replaced with a placeholder including the file
 	from the deprecated/ directory.
 	* objc/deprecated/objc-unexpected-exception.h: New file with the
-	definition of _objc_unexpected_exception.	
+	definition of _objc_unexpected_exception.
 	* objc/objc-api.h: Include deprecated/objc-unexcepted-exception.h
 	instead of defining _objc_unexpected_exception.
 	* objc/deprecated/Object.h: New file with the deprecated Object
@@ -1251,7 +1251,7 @@ 
 2010-09-10  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc-exception.h: Fixed include of objc.h.
-	
+
 2010-09-08  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* objc/objc-exception.h: New file.
@@ -1316,7 +1316,7 @@ 
 2010-09-06  Nicola Pero  <nicola.pero@meta-innovation.com>

 	* makefile.dos: Obsolete file removed.
-	
+
 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

 	* aclocal.m4: Regenerate.
@@ -1436,7 +1436,7 @@ 
 	copyright dates.
 	* libobjc.def (_objc_unexpected_exception): Export hook.
 	Update copyright dates.
-	
+
 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

 	* configure: Regenerate.
@@ -1458,18 +1458,18 @@ 
 	for noreturn.

 2008-09-26  Peter O'Gorman  <pogma@thewrittenword.com>
-            Steve Ellcey  <sje@cup.hp.com>
+	    Steve Ellcey  <sje@cup.hp.com>

 	* configure: Regenerate for new libtool.
 	* config.h.in: Regenerate for new libtool.

-2008-07-18  Matthias Klose  <doko@ubuntu.com> 
+2008-07-18  Matthias Klose  <doko@ubuntu.com>

-	* Makefile.in: Ignore missing ../boehm-gc/threads.mk. 
+	* Makefile.in: Ignore missing ../boehm-gc/threads.mk.

-2008-07-18  Matthias Klose  <doko@ubuntu.com> 
+2008-07-18  Matthias Klose  <doko@ubuntu.com>

-	* Makefile.in: Include ../boehm-gc/threads.mk. 
+	* Makefile.in: Include ../boehm-gc/threads.mk.
 	(OBJC_BOEHM_GC_LIBS): Define, (libobjc_gc$(libsuffix).la): Use it.

 2008-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
@@ -1597,7 +1597,7 @@ 

 	* objc/objc-list.h (list_free): Add keyword 'inline' to avoid
 	unused warning.
-	
+
 2006-10-31  Geoffrey Keating  <geoffk@apple.com>

 	* encoding.c (darwin_rs6000_special_round_type_align): New.
@@ -1656,7 +1656,7 @@ 
 	PR libobjc/14382
 	* README (+load,+initialize): Fix documentation to reflect
 	intended and implemented semantics for +load and +initialize.
-	
+
 2005-12-12  Andrew Pinski  <pinskia@physics.uc.edu>

 	* encoding.c (TYPE_FIELDS): Fix to skip over just _C_STRUCT_B and
@@ -1706,7 +1706,7 @@ 
 	global scope.

 2005-09-04  Andrew Pinski  <pinskia@physics.uc.edu>
-            Rasmus Hahn  <rassahah@neofonie.de>
+	    Rasmus Hahn  <rassahah@neofonie.de>

 	PR libobjc/23108
 	* archive.c (objc_write_type): Correct the element offset.
@@ -1717,7 +1717,7 @@ 
 	* All files: Update FSF address.

 2005-08-13  Marcin Koziej  <creep@desk.pl>
-            Andrew Pinski  <pinskia@physics.uc.edu>
+	    Andrew Pinski  <pinskia@physics.uc.edu>

 	PR libobjc/22492
 	* exception.c (PERSONALITY_FUNCTION): Fix the PC with finally.
@@ -1741,7 +1741,7 @@ 

 	* objc/NXConstStr.h, objc/Object.h, objc/Protocol.h,
 	objc/encoding.h, objc/hash.h, objc/objc-api.h,
-	objc/runtime.h, objc/sarray.h, objc/thr.h, 
+	objc/runtime.h, objc/sarray.h, objc/thr.h,
 	objc/typedstream.h: Do not include Objective-C headers as
 	system headers.

diff --git a/libssp/ChangeLog b/libssp/ChangeLog
index 1e7b9ac..9ab0327 100644
--- a/libssp/ChangeLog
+++ b/libssp/ChangeLog
@@ -122,7 +122,7 @@ 
 	* configure: Regenerate.

 2008-09-26  Peter O'Gorman  <pogma@thewrittenword.com>
-            Steve Ellcey  <sje@cup.hp.com>
+	    Steve Ellcey  <sje@cup.hp.com>

 	* configure: Regenerate for new libtool.
 	* Makefile.in: Ditto.
@@ -194,7 +194,7 @@ 
 	* Makefile.in: Regenerate.

 2006-02-27  Mark Mitchell  <mark@codesourcery.com>
-	
+
 	PR 26473
 	* configure.ac (ACX_NONCANONICAL_TARGET): Use it.
 	* Makefile.am (target_noncanonical): Define.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 44c87be..570a0ad 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -4,7 +4,7 @@ 
 	expected errors.

 2011-03-07  Benjamin Kosnik  <bkoz@redhat.com>
-            Matthias Klose  <doko@ubuntu.com>
+	    Matthias Klose  <doko@ubuntu.com>
 	    Jonathan Wakely  <redi@gcc.gnu.org>

 	PR libstdc++/47145
diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog
index e4a19cd..fbb0701 100644
--- a/lto-plugin/ChangeLog
+++ b/lto-plugin/ChangeLog
@@ -376,7 +376,7 @@ 
 	(onload): Don't create the temporary directory.

 2009-11-04  Richard Guenther  <rguenther@suse.de>
-            Rafael Avila de Espindola  <espindola@google.com>
+	    Rafael Avila de Espindola  <espindola@google.com>

 	* lto-plugin.c (plugin_file_info): Remove temp field.
 	(cleanup_handler): Don't delete temporary objects.
@@ -411,10 +411,10 @@ 
 	* aclocal.m4: Likewise.

 2009-10-19  Rafael Avila de Espindola  <espindola@google.com>
-    
-        PR40790
-        * configure: Regenerate.
-        * configure.ac: Add AC_TYPE_UINT64_T.
+
+	PR40790
+	* configure: Regenerate.
+	* configure.ac: Add AC_TYPE_UINT64_T.

 2009-10-16  Rafael Avila de Espindola  <espindola@google.com>

@@ -499,7 +499,7 @@ 
 	(num_pass_through_items): New.
 	(all_symbols_read_handler): Update to use the -pass-through option.
 	(process_option): Replace -libgcc with -pass-through.
-	
+
 2009-09-30  Rafael Avila de Espindola  <espindola@google.com>

 	* lto-plugin.c (onload): Return a ld_plugin_status. Don't require
@@ -655,7 +655,7 @@ 

 2008-09-23  Rafael Espindola  <espindola@google.com>

-        * plugin-api.h: Moved to include.
+	* plugin-api.h: Moved to include.

 2008-09-23 Rafael Espindola  <espindola@google.com>

diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog
index a95d3d6..7530715 100644
--- a/maintainer-scripts/ChangeLog
+++ b/maintainer-scripts/ChangeLog
@@ -6,7 +6,7 @@ 

 	* update_version_svn (FILES): Merge with datestamp_FILES.
 	(SVNROOT2): Introduce and use.
-	
+
 2011-01-30  Gerald Pfeifer  <gerald@pfeifer.com>

 	* update_version_svn (SVN): Remove obsolete comment.
@@ -219,8 +219,8 @@ 

 2005-12-16  Mark Mitchell  <mark@codesourcery.com>

-	* update_web_docs_svn: Set @srcdir in gcc-vers.texi. 
-	
+	* update_web_docs_svn: Set @srcdir in gcc-vers.texi.
+
 2005-11-18  Mark Mitchell  <mark@codesourcery.com>

 	* crontab: Add 4.1 branch entry.