static void
write_identifier (struct output_block *ob,
		   struct lto_output_stream *index_stream,
		   tree id)
{
  streamer_write_string_with_length (ob, index_stream,
				     IDENTIFIER_POINTER (id),
				     IDENTIFIER_LENGTH (id),
				     true);
}
Beispiel #2
0
static void
write_string_cst (struct output_block *ob,
		   struct lto_output_stream *index_stream,
		   tree string)
{
  streamer_write_string_with_length (ob, index_stream,
				     TREE_STRING_POINTER (string),
				     TREE_STRING_LENGTH (string),
				     true);
}