We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b9112 commit d3bf21dCopy full SHA for d3bf21d
src/6model/reprs/CPointer.c
@@ -60,9 +60,9 @@ static void gc_free(PARROT_INTERP, PMC *obj) {
60
/* Gets the storage specification for this representation. */
61
static storage_spec get_storage_spec(PARROT_INTERP, STable *st) {
62
storage_spec spec;
63
- spec.inlineable = STORAGE_SPEC_INLINED;
64
- spec.bits = sizeof(CPointerBody) * 8;
+ spec.inlineable = STORAGE_SPEC_REFERENCE;
65
spec.boxed_primitive = STORAGE_SPEC_BP_NONE;
+ spec.can_box = 0;
66
return spec;
67
}
68
0 commit comments