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:
Vy Nguyen 2021-11-02 16:57:51 -04:00
parent 8a91bc7bf4
commit 37f96cb478
1 changed files with 2 additions and 2 deletions

View File

@ -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 {