mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 14:29:26 +01:00
* also change labels starting with L to _L on darwin/x86
git-svn-id: trunk@2725 -
This commit is contained in:
parent
2c01a6f77a
commit
ec486f0238
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user