summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2007-06-11 07:12:35 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2007-06-11 07:12:35 +0000
commit5a395797ebdebfd9d2c8f3cdb0180035fa503bbb (patch)
tree35ebd3bb32c67255000b30d671004ce17375cf1d
parent0230d77c462951c5b8414e4049e606eb952dc3ee (diff)
downloadfpc-5a395797ebdebfd9d2c8f3cdb0180035fa503bbb.tar.gz
* fixed compilation (mea culpa :( )
git-svn-id: http://svn.freepascal.org/svn/fpc/branches/fixes_2_2@7631 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/dbgstabs.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dbgstabs.pas b/compiler/dbgstabs.pas
index 891d010922..74e926f826 100644
--- a/compiler/dbgstabs.pas
+++ b/compiler/dbgstabs.pas
@@ -1578,7 +1578,7 @@ implementation
{ for darwin, you need an "end of module marker too" to work around }
{ either some assembler or gdb bug (radar 4386531 according to a }
{ comment in dbxout.c of Apple's gcc) }
- if (target_info.system in systems_darwin) then
+ if (target_info.system in [system_powerpc_darwin,system_i386_darwin]) then
current_asmdata.asmlists[al_end].concat(Tai_stab.Create_str(stab_stabs,'"",'+tostr(N_OSO)+',0,0,'+hlabel.name));
current_asmdata.asmlists[al_end].concat(Tai_stab.Create_str(stab_stabs,'"",'+tostr(n_sourcefile)+',0,0,'+hlabel.name));
current_asmdata.asmlists[al_end].concat(tai_label.create(hlabel));