* fixed tw8391.pp for i386.

git-svn-id: trunk@7768 -
This commit is contained in:
yury 2007-06-21 23:22:48 +00:00
parent 98c1a8c386
commit 84306f80e9
2 changed files with 4 additions and 4 deletions

View File

@ -1358,8 +1358,8 @@ implementation
FIsVar:=AIsVar; FIsVar:=AIsVar;
FMangledName:=AName; FMangledName:=AName;
{ Replace ? and @ in import name } { Replace ? and @ in import name }
Replace(FMangledName,'?','$_q_$'); Replace(FMangledName,'?','__q$$');
Replace(FMangledName,'@','$_a_$'); Replace(FMangledName,'@','__a$$');
end; end;

View File

@ -2254,8 +2254,8 @@ const
if s<>'' then if s<>'' then
begin begin
{ Replace ? and @ in import name } { Replace ? and @ in import name }
Replace(s,'?','$_q_$'); Replace(s,'?','__q$$');
Replace(s,'@','$_a_$'); Replace(s,'@','__a$$');
pd.setmangledname(s); pd.setmangledname(s);
end; end;
end; end;