mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 20:09:18 +02:00
* adapted to 64 bit
This commit is contained in:
parent
e9dc638a76
commit
82ccc863ef
@ -15,9 +15,9 @@
|
|||||||
|
|
||||||
type
|
type
|
||||||
jmp_buf=packed record
|
jmp_buf=packed record
|
||||||
ra,sp,s0,s1,s2,s3,s4,s5,s6,s7,fp,gp: longint;
|
ra,sp,s0,s1,s2,s3,s4,s5,s6,s7,fp,gp: qword;
|
||||||
{$if defined(FPUMIPS2) or defined(FPUMIPS3)}
|
{$if defined(FPUMIPS2) or defined(FPUMIPS3)}
|
||||||
_fcsr,f20,f21,f22,f23,f24,f25,f26,f27,f28,f29,f30,f31: longint;
|
_fcsr,f20,f21,f22,f23,f24,f25,f26,f27,f28,f29,f30,f31: qword;
|
||||||
{$endif FPUMIPS2 or FPUMIPS3}
|
{$endif FPUMIPS2 or FPUMIPS3}
|
||||||
end;
|
end;
|
||||||
Pjmp_buf=^jmp_buf;
|
Pjmp_buf=^jmp_buf;
|
||||||
|
Loading…
Reference in New Issue
Block a user