mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 01:39:42 +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
|
||||
rdDefault: Result := IntToStr(FNumValue);
|
||||
rdHex: Result := '$'+IntToHex(FNumValue);
|
||||
rdHex: Result := '$'+Dec64ToNumb(FNumValue, 0, 16);
|
||||
rdBinary: Result := '%'+Dec64ToNumb(FNumValue, 0, 2);
|
||||
rdOctal: Result := '&'+Dec64ToNumb(FNumValue, 0, 8);
|
||||
rdDecimal: Result := IntToStr(FNumValue);
|
||||
|
Loading…
Reference in New Issue
Block a user