mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 04:29:42 +02:00
* more robust calculation of TBITS_SHIFT
This commit is contained in:
parent
236febb148
commit
9c8f362acc
@ -15,7 +15,17 @@
|
||||
{****************************************************************************}
|
||||
|
||||
const
|
||||
TBITS_SHIFT = BsrDWord(bitsizeof(TBitsBase));
|
||||
TBITS_SHIFT =
|
||||
{$if sizeof(TBitsBase) = sizeof(word)}
|
||||
4
|
||||
{$elseif sizeof(TBitsBase) = sizeof(dword)}
|
||||
5
|
||||
{$elseif sizeof(TBitsBase) = sizeof(qword)}
|
||||
6
|
||||
{$else}
|
||||
{$error unknown TBitsBase}
|
||||
{$endif}
|
||||
;
|
||||
TBITS_MASK = 1 shl TBITS_SHIFT - 1;
|
||||
|
||||
Procedure BitsErrorFmt (const Msg : string; const Args : array of const);
|
||||
|
Loading…
Reference in New Issue
Block a user