mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 21:09:07 +02:00
* fixed range error
git-svn-id: trunk@35151 -
This commit is contained in:
parent
bcb7fedb3c
commit
fe6b662c37
@ -649,7 +649,7 @@ implementation
|
|||||||
otUQWord:
|
otUQWord:
|
||||||
begin
|
begin
|
||||||
tcb.emit_ord_const(def.low.uvalue,u64inttype);
|
tcb.emit_ord_const(def.low.uvalue,u64inttype);
|
||||||
tcb.emit_ord_const(def.high.uvalue,u64inttype);
|
tcb.emit_ord_const(int64(def.high.uvalue),u64inttype);
|
||||||
end;
|
end;
|
||||||
otSQWord:
|
otSQWord:
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user