1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Make enum-valued bitfield large enough to avoid interpretation as negative values in VC++.

llvm-svn: 36304
This commit is contained in:
Jeff Cohen 2007-04-21 16:29:37 +00:00
parent facf6d55d3
commit 5b012f8b7f

View File

@ -63,7 +63,7 @@ class MachineRelocation {
} Target;
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 GOTRelative : 1; // Should this relocation be relative to the GOT?