forked from OSchip/llvm-project
Fix pointer options mask. It was off by 1 bit.
llvm-svn: 347359
This commit is contained in:
parent
d931c135f0
commit
53c9ca6c04
|
@ -272,8 +272,8 @@ public:
|
|||
static const uint32_t PointerModeShift = 5;
|
||||
static const uint32_t PointerModeMask = 0x07;
|
||||
|
||||
// ----------XXX------XXXXX-------
|
||||
static const uint32_t PointerOptionMask = 0x1C0F80;
|
||||
// ----------XXX------XXXXX--------
|
||||
static const uint32_t PointerOptionMask = 0x381f00;
|
||||
|
||||
// -------------XXXXXX------------
|
||||
static const uint32_t PointerSizeShift = 13;
|
||||
|
|
Loading…
Reference in New Issue