mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-10 15:50:50 +02:00
This obviously invalidates previous benchmark results; perhaps we should make this optional.
11 lines
235 B
C
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
|