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 fa12f9d64a
commit bef777f506
1 changed files with 1 additions and 1 deletions

View File

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