I've had these two small changes around for a while after making a search and replace for extra spaces in my own added code last week.
Tested with bootstrap and pph regression testing, you never know ;) 2011-06-22 Gabriel Charette <gch...@google.com> * gcc/cp/pph-streamer-out.c (pph_out_lang_specific): Removed extra space. (pph_write_tree): Removed extra space. diff --git a/gcc/cp/pph-streamer-out.c b/gcc/cp/pph-streamer-out.c index 32851a4..f219cef 100644 --- a/gcc/cp/pph-streamer-out.c +++ b/gcc/cp/pph-streamer-out.c @@ -714,7 +714,7 @@ pph_out_lang_specific (pph_stream *stream, tree decl, bool ref_p) ld = DECL_LANG_SPECIFIC (decl); if (!pph_out_start_record (stream, ld)) return; - + /* Write all the fields in lang_decl_base. */ ldb = &ld->u.base; pph_out_ld_base (stream, ldb); @@ -1166,7 +1166,7 @@ pph_write_tree (struct output_block *ob, tree expr, bool ref_p) TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (expr), ref_p); break; - case TEMPLATE_PARM_INDEX: + case TEMPLATE_PARM_INDEX: { template_parm_index *p = TEMPLATE_PARM_INDEX_CAST (expr); pph_out_tree_common (stream, expr, ref_p); -- This patch is available for review at http://codereview.appspot.com/4663041