A bitfield that describes the type of this symbol
In reality, this describes 4 fields: - N_STAB (top 3 bits) - N_PEXT (next 1 bit) - N_TYPE (next 3 bits) - N_EXT (last 1 bit)
The enum values N_STAB, N_PEXT, N_TYPE, and N_EXT should be used as masks to check which type this nlist_64 actually is.
See Implementation
A bitfield that describes the type of this symbol
In reality, this describes 4 fields: - N_STAB (top 3 bits) - N_PEXT (next 1 bit) - N_TYPE (next 3 bits) - N_EXT (last 1 bit)
The enum values N_STAB, N_PEXT, N_TYPE, and N_EXT should be used as masks to check which type this nlist_64 actually is.