aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/typekind.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/typekind.h')
-rw-r--r--src/pkg/runtime/typekind.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pkg/runtime/typekind.h b/src/pkg/runtime/typekind.h
index 3f0ba9acb8..bf6ade08d6 100644
--- a/src/pkg/runtime/typekind.h
+++ b/src/pkg/runtime/typekind.h
@@ -33,6 +33,8 @@ enum {
KindStruct,
KindUnsafePointer,
+ KindGCProg = 1<<6, // Type.gc points to GC program
KindNoPointers = 1<<7,
+ KindMask = (1<<6)-1,
};