Renamed seq_point_info_write_size to seq_point_info_get_write_size.
authorMarcos Henrich <marcos.henrich@xamarin.com>
Fri, 14 Nov 2014 18:37:10 +0000 (02:37 +0800)
committerMarcos Henrich <marcos.henrich@xamarin.com>
Tue, 18 Nov 2014 18:02:51 +0000 (18:02 +0000)
mono/mini/aot-compiler.c
mono/mini/seq-points.c
mono/mini/seq-points.h

index 209eb597abbfb60585696f4f1e96a52b478f8e88..938f8fc9a682984e438ba276abc878efb73bb9c7 100644 (file)
@@ -5359,7 +5359,7 @@ emit_exception_debug_info (MonoAotCompile *acfg, MonoCompile *cfg)
 
        seq_points = cfg->seq_point_info;
 
-       seq_points_size = seq_point_info_write_size (seq_points);
+       seq_points_size = seq_point_info_get_write_size (seq_points);
 
        buf_size = header->num_clauses * 256 + debug_info_size + 2048 + seq_points_size + cfg->gc_map_size;
        p = buf = g_malloc (buf_size);
index 813cd5219a87120c8370de0a1a4f6600138348a1..ebd4c0939c3c807896b081998995a38bae830926 100644 (file)
@@ -598,7 +598,7 @@ seq_point_info_read (MonoSeqPointInfo** info, guint8* buffer, gboolean copy)
  * Returns the maximum size of mono_seq_point_info_write.
  */
 int
-seq_point_info_write_size (MonoSeqPointInfo* info)
+seq_point_info_get_write_size (MonoSeqPointInfo* info)
 {
        SeqPointInfoInflated info_inflated = seq_point_info_inflate (info);
 
index 116696b45ea5eb572d05c8aecd3e1a85a410519e..66cf98323d393389b956c5f7bf62b238f7aeef85 100644 (file)
@@ -67,6 +67,6 @@ int
 seq_point_info_read (MonoSeqPointInfo** info, guint8* buffer, gboolean copy);
 
 int
-seq_point_info_write_size (MonoSeqPointInfo* info);
+seq_point_info_get_write_size (MonoSeqPointInfo* info);
 
 #endif /* __MONO_SEQ_POINTS_H__ */
\ No newline at end of file