mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 16:29:27 +02:00
do not display the changing assembler note, if the internal and the external assemblers are the same, or there's no internal assembler defined
This commit is contained in:
parent
db137d0528
commit
3c57eb42f9
@ -5191,7 +5191,10 @@ begin
|
||||
((option.paratargetasm=as_none) and (target_info.endian<>source_info.endian)) then
|
||||
begin
|
||||
if ((option.paratargetasm=as_none) and (target_info.endian<>source_info.endian)) then
|
||||
Message(option_switch_bin_to_src_assembler_cross_endian)
|
||||
begin
|
||||
if not ((target_info.assem = target_info.assemextern) or (target_info.assem = as_none)) then
|
||||
Message(option_switch_bin_to_src_assembler_cross_endian);
|
||||
end
|
||||
else
|
||||
Message(option_switch_bin_to_src_assembler);
|
||||
{$ifdef llvm}
|
||||
|
Loading…
Reference in New Issue
Block a user