forked from OSchip/llvm-project
Make enum-valued bitfield large enough to avoid interpretation as negative values in VC++.
llvm-svn: 36304
This commit is contained in:
parent
fa12f9d64a
commit
bef777f506
|
@ -63,7 +63,7 @@ class MachineRelocation {
|
||||||
} Target;
|
} Target;
|
||||||
|
|
||||||
unsigned TargetReloType : 6; // The target relocation ID.
|
unsigned TargetReloType : 6; // The target relocation ID.
|
||||||
AddressType AddrType : 3; // The field of Target to use.
|
AddressType AddrType : 4; // The field of Target to use.
|
||||||
bool DoesntNeedFnStub : 1; // True if we don't need a fn stub.
|
bool DoesntNeedFnStub : 1; // True if we don't need a fn stub.
|
||||||
bool GOTRelative : 1; // Should this relocation be relative to the GOT?
|
bool GOTRelative : 1; // Should this relocation be relative to the GOT?
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue