* ifdef cpu64bit -> ifdef cpu64

git-svn-id: trunk@6182 -
This commit is contained in:
Jonas Maebe 2007-01-25 08:33:20 +00:00
parent cdb67cfc8b
commit 3198915389
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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}