* also change labels starting with L to _L on darwin/x86

git-svn-id: trunk@2725 -
This commit is contained in:
Jonas Maebe 2006-03-03 19:31:46 +00:00
parent 2c01a6f77a
commit ec486f0238

View File

@ -880,7 +880,7 @@ implementation
if suffix<>'' then
result:=result+'_'+suffix;
{ the Darwin assembler assumes that all symbols starting with 'L' are local }
if (target_info.system = system_powerpc_darwin) and
if (target_info.system in [system_powerpc_darwin,system_i386_darwin]) and
(result[1] = 'L') then
result := '_' + result;
end;