codetools: reading rtti param list: undo reverse order for 2.5.1

git-svn-id: trunk@21693 -
This commit is contained in:
mattias 2009-09-13 22:18:38 +00:00
parent 4aa391b617
commit 841fc7af8a

View File

@ -131,16 +131,6 @@ implementation
function ReverseRTTIParamList: boolean;
begin
Result:=false;
{$IFDEF i386}
// RTTI for i386 uses the calling convention: left to right
{$ELSE}
{$IF defined(VER2_2) or defined(VER2_3)}
// prior to fpc 2.5.1 for non i386 platforms the RTTI is left to right
{$ELSE}
// since fpc 2.5.1 for non i386 platforms the RTTI is right to left
Result:=true;
{$ENDIF}
{$ENDIF}
end;
{ TEventsCodeTool }