Revert "[lld-macho] Change bitfield types to be identical."
This reverts commit ae31f9fbad.
Reason: bitfields can't be merged across parent/child classes anyway. So this change doesn't help.
This commit is contained in:
parent
8a91bc7bf4
commit
37f96cb478
|
|
@ -103,10 +103,10 @@ protected:
|
|||
|
||||
public:
|
||||
// True if this symbol was referenced by a regular (non-bitcode) object.
|
||||
uint8_t isUsedInRegularObj : 1;
|
||||
bool isUsedInRegularObj : 1;
|
||||
|
||||
// True if an undefined or dylib symbol is used from a live section.
|
||||
uint8_t used : 1;
|
||||
bool used : 1;
|
||||
};
|
||||
|
||||
class Defined : public Symbol {
|
||||
|
|
|
|||
Loading…
Reference in New Issue