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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36304 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jeff Cohen 2007-04-21 16:29:37 +00:00
parent 8c28c467f6
commit 8f192e0ee0

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?