mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-02 07:30:52 +00:00
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:
parent
8c28c467f6
commit
8f192e0ee0
@ -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?
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user