1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-10 15:50:50 +02:00
guile/mt-gcbench-types.h
Andy Wingo 279309b821 mt-gcbench allocates garbage between live data
This obviously invalidates previous benchmark results; perhaps we should
make this optional.
2022-07-20 14:40:47 +02:00

11 lines
235 B
C

#ifndef GCBENCH_TYPES_H
#define GCBENCH_TYPES_H
#define FOR_EACH_HEAP_OBJECT_KIND(M) \
M(node, Node, NODE) \
M(double_array, DoubleArray, DOUBLE_ARRAY) \
M(hole, Hole, HOLE)
#include "heap-objects.h"
#endif // GCBENCH_TYPES_H