From bbc8629b3937f7d887a3e32d3a534e461e07aad9 Mon Sep 17 00:00:00 2001 From: nickysn Date: Tue, 31 Mar 2020 19:40:18 +0000 Subject: [PATCH] - removed commented out code for handling case insensitive assemblers, because sdcc-sdasz80 is case sensitive by default git-svn-id: branches/z80@44466 - --- compiler/z80/agsdasz80.pas | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/compiler/z80/agsdasz80.pas b/compiler/z80/agsdasz80.pas index fa9436dc49..93e6190553 100644 --- a/compiler/z80/agsdasz80.pas +++ b/compiler/z80/agsdasz80.pas @@ -244,20 +244,6 @@ unit agsdasz80; begin if tai_symbol(hp).has_value then internalerror(2009090802); - { wasm is case insensitive, we nned to use only uppercase version - if both a lowercase and an uppercase version are provided } - {if (asminfo^.id = as_i386_wasm) then - begin - nhp:=tai(hp.next); - while assigned(nhp) and (nhp.typ in [ait_function_name,ait_force_line]) do - nhp:=tai(nhp.next); - if assigned(nhp) and (tai(nhp).typ=ait_symbol) and - (lower(tai_symbol(nhp).sym.name)=tai_symbol(hp).sym.name) then - begin - writer.AsmWriteln(asminfo^.comment+' '+tai_symbol(hp).sym.name+' removed'); - hp:=tai(nhp); - end; - end;} if tai_symbol(hp).is_global then begin writer.AsmWrite('.globl'#9);