public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [pph] Fix some names (issue4277091)
@ 2011-03-31  0:10 Diego Novillo
  0 siblings, 0 replies; only message in thread
From: Diego Novillo @ 2011-03-31  0:10 UTC (permalink / raw)
  To: reply, crowl, gcc-patches


I had misnamed the functions to convert output_block to pph_stream.

cp/ChangeLog.pph
2011-03-30  Diego Novillo  <dnovillo@google.com>

	* pph-streamer.h (pph_get_pph_stream): Rename from
	pph_get_ob_stream.  Update all users.
	(pph_set_pph_stream): Rename from pph_set_pph_stream.  Update
	all users.
	(pph_output_tree): Remove ATTRIBUTE_UNUSED.
	(pph_input_tree): Remove ATTRIBUTE_UNUSED.

diff --git a/gcc/cp/pph-streamer.c b/gcc/cp/pph-streamer.c
index 125c4e7..e7f0423 100644
--- a/gcc/cp/pph-streamer.c
+++ b/gcc/cp/pph-streamer.c
@@ -135,7 +135,7 @@ pph_stream_init_write (pph_stream *stream)
   lto_push_out_decl_state (stream->out_state);
   stream->decl_state_stream = XCNEW (struct lto_output_stream);
   stream->ob = create_output_block (LTO_section_decls);
-  pph_set_ob_stream (stream->ob, stream);
+  pph_set_pph_stream (stream->ob, stream);
 }
 
 
@@ -148,7 +148,7 @@ pph_stream_write_ld_base (struct output_block *ob, struct lang_decl_base *ldb)
 
   if (ldb == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -178,7 +178,7 @@ pph_stream_write_ld_min (struct output_block *ob, struct lang_decl_min *ldm,
 {
   if (ldm == 0)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -224,7 +224,7 @@ pph_stream_write_cxx_binding_1 (struct output_block *ob, cxx_binding *cb,
 
   if (cb == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -250,7 +250,7 @@ pph_stream_write_cxx_binding (struct output_block *ob, cxx_binding *cb,
 
   if (cb == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -276,7 +276,7 @@ pph_stream_write_class_binding (struct output_block *ob,
 {
   if (cb == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -294,7 +294,7 @@ pph_stream_write_label_binding (struct output_block *ob,
 {
   if (lb == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -317,7 +317,7 @@ pph_stream_write_binding_level (struct output_block *ob,
 
   if (bl == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -368,7 +368,7 @@ pph_stream_write_c_language_function (struct output_block *ob,
 {
   if (clf == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -390,7 +390,7 @@ pph_stream_write_language_function (struct output_block *ob,
 
   if (lf == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -431,7 +431,7 @@ pph_stream_write_ld_fn (struct output_block *ob, struct lang_decl_fn *ldf,
 
   if (ldf == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -465,7 +465,7 @@ pph_stream_write_ld_fn (struct output_block *ob, struct lang_decl_fn *ldf,
     gcc_unreachable ();
 
   if (ldf->pending_inline_p == 1)
-    pth_save_token_cache (ldf->u.pending_inline_info, pph_get_ob_stream (ob));
+    pth_save_token_cache (ldf->u.pending_inline_info, pph_get_pph_stream (ob));
   else if (ldf->pending_inline_p == 0)
     pph_stream_write_language_function (ob, ldf->u.saved_language_function,
 					ref_p);
@@ -483,7 +483,7 @@ pph_stream_write_ld_ns (struct output_block *ob, struct lang_decl_ns *ldns,
 
   if (ldns == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
@@ -500,7 +500,7 @@ pph_stream_write_ld_parm (struct output_block *ob, struct lang_decl_parm *ldp)
 {
   if (ldp == NULL)
     {
-      pph_output_uint (pph_get_ob_stream (ob), 0);
+      pph_output_uint (pph_get_pph_stream (ob), 0);
       return;
     }
 
diff --git a/gcc/cp/pph-streamer.h b/gcc/cp/pph-streamer.h
index 5d888b3..9fb7ac3 100644
--- a/gcc/cp/pph-streamer.h
+++ b/gcc/cp/pph-streamer.h
@@ -100,7 +100,7 @@ extern void pth_save_token_cache (struct cp_token_cache *, pph_stream *);
 
 /* Output AST T to STREAM.  */
 static inline void
-pph_output_tree (pph_stream *stream ATTRIBUTE_UNUSED, tree t ATTRIBUTE_UNUSED)
+pph_output_tree (pph_stream *stream, tree t)
 {
   if (flag_pph_tracer)
     pph_stream_trace_tree (stream, t);
@@ -190,7 +190,7 @@ pph_input_string (pph_stream *stream)
 /* Load an AST from STREAM.  Return the corresponding tree.  */
 
 static inline tree
-pph_input_tree (pph_stream *stream ATTRIBUTE_UNUSED)
+pph_input_tree (pph_stream *stream)
 {
   tree t = lto_input_tree (stream->ib, stream->data_in);
   if (flag_pph_tracer)
@@ -201,7 +201,7 @@ pph_input_tree (pph_stream *stream ATTRIBUTE_UNUSED)
 /* Return the PPH stream object associated with output block OB.  */
 
 static inline pph_stream *
-pph_get_ob_stream (struct output_block *ob)
+pph_get_pph_stream (struct output_block *ob)
 {
   /* FIXME pph - Do not overload OB fields this way.  */
   return ((pph_stream *) ob->cfg_stream);
@@ -210,7 +210,7 @@ pph_get_ob_stream (struct output_block *ob)
 /* Set the PPH stream object F associated with output block OB.  */
 
 static inline void
-pph_set_ob_stream (struct output_block *ob, pph_stream *f)
+pph_set_pph_stream (struct output_block *ob, pph_stream *f)
 {
   /* FIXME pph - Do not overload OB fields this way.  */
   ob->cfg_stream = (struct lto_output_stream *) f;

--
This patch is available for review at http://codereview.appspot.com/4277091

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-03-31  0:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-31  0:10 [pph] Fix some names (issue4277091) Diego Novillo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).