mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-29 23:40:14 +02:00
+ internal assembler: early check for empty asmlists.
git-svn-id: trunk@28629 -
This commit is contained in:
parent
84245a6e0c
commit
6fd8a26ae1
@ -1736,7 +1736,8 @@ Implementation
|
||||
if not(tf_section_threadvars in target_info.flags) then
|
||||
exclude(to_do,al_threadvars);
|
||||
for i:=low(TasmlistType) to high(TasmlistType) do
|
||||
if (i in to_do) and (current_asmdata.asmlists[i]<>nil) then
|
||||
if (i in to_do) and (current_asmdata.asmlists[i]<>nil) and
|
||||
(not current_asmdata.asmlists[i].empty) then
|
||||
addlist(current_asmdata.asmlists[i]);
|
||||
|
||||
if SmartAsm then
|
||||
|
Loading…
Reference in New Issue
Block a user