mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 00:50:17 +02:00
* ifdef cpu64bit -> ifdef cpu64
git-svn-id: trunk@6182 -
This commit is contained in:
parent
cdb67cfc8b
commit
3198915389
@ -32,13 +32,13 @@ var
|
||||
retaddr: pointer;
|
||||
asm
|
||||
mflr r0
|
||||
{$ifndef cpu64bit}
|
||||
{$ifndef cpu64}
|
||||
stw r0, retaddr
|
||||
{$else}
|
||||
std r0, retaddr
|
||||
{$endif}
|
||||
bl TMyObject.Test2
|
||||
{$ifndef cpu64bit}
|
||||
{$ifndef cpu64}
|
||||
lwz r0, retaddr
|
||||
{$else}
|
||||
ld r0, retaddr
|
||||
|
@ -12,7 +12,7 @@ type
|
||||
|
||||
procedure tc.test; assembler;
|
||||
asm
|
||||
{$ifdef cpu64bit}
|
||||
{$ifdef cpu64}
|
||||
ld r4,0(r3)
|
||||
ld r4,+vmtoffset tc.v(r4)
|
||||
{$else}
|
||||
|
Loading…
Reference in New Issue
Block a user