Are FPC's nostackframe
and Delphi's .NOFRAME
directive exactly equivalent in 64-bit asm functions?
In other words does the next code template
procedure Naked(SomeArg: Integer);{$IFDEF FPC}nostackframe;{$ENDIF}
asm
{$IFNDEF FPC}
.NOFRAME
{$ENDIF}
..
end;
generates identical naked 64-bit asm functions in Delphi and FPC?