mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 09:19:22 +02:00
FpDebug: (fix compile) display-format for ymm/xmm
This commit is contained in:
parent
9092967d44
commit
76c4dc085a
@ -1037,7 +1037,7 @@ begin
|
|||||||
|
|
||||||
case AFormat of
|
case AFormat of
|
||||||
rdDefault: Result := IntToStr(FNumValue);
|
rdDefault: Result := IntToStr(FNumValue);
|
||||||
rdHex: Result := '$'+IntToHex(FNumValue);
|
rdHex: Result := '$'+Dec64ToNumb(FNumValue, 0, 16);
|
||||||
rdBinary: Result := '%'+Dec64ToNumb(FNumValue, 0, 2);
|
rdBinary: Result := '%'+Dec64ToNumb(FNumValue, 0, 2);
|
||||||
rdOctal: Result := '&'+Dec64ToNumb(FNumValue, 0, 8);
|
rdOctal: Result := '&'+Dec64ToNumb(FNumValue, 0, 8);
|
||||||
rdDecimal: Result := IntToStr(FNumValue);
|
rdDecimal: Result := IntToStr(FNumValue);
|
||||||
|
Loading…
Reference in New Issue
Block a user