mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-30 06:50:31 +02:00
Remove unused function
This commit is contained in:
parent
1267f77de3
commit
5ba0aec869
1 changed files with 0 additions and 7 deletions
|
@ -30,13 +30,6 @@ static inline uint64_t gc_histogram_bucket_min_val(uint64_t precision,
|
||||||
return min_val;
|
return min_val;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void gc_histogram_record(uint32_t *buckets,
|
|
||||||
uint64_t max_value_bits,
|
|
||||||
uint64_t precision,
|
|
||||||
uint64_t val) {
|
|
||||||
buckets[gc_histogram_bucket(max_value_bits, precision, val)]++;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define GC_DEFINE_HISTOGRAM(name, max_value_bits, precision) \
|
#define GC_DEFINE_HISTOGRAM(name, max_value_bits, precision) \
|
||||||
struct name { uint32_t buckets[((max_value_bits) << (precision)) + 1]; }; \
|
struct name { uint32_t buckets[((max_value_bits) << (precision)) + 1]; }; \
|
||||||
static inline size_t name##_size(void) { \
|
static inline size_t name##_size(void) { \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue