I was going through Julia
backend and found this
struct _jl_taggedvalue_bits {
uintptr_t gc:2;
};
When I initialize it and look in debugger gc
is zero initialized. So, what is the exact meaning of gc:2
?
Found here: https://github.com/JuliaLang/julia/blob/8c9799530383d571d5beab4e530d86e40a289929/src/julia.h#L95