From c916105db8d750e82b7f069d1a2a9060ace3f06b Mon Sep 17 00:00:00 2001 From: nickysn Date: Sun, 14 Apr 2013 14:35:51 +0000 Subject: [PATCH] - rm ti8086procinfo.allocate_got_register as it isn't used on the i8086 git-svn-id: branches/i8086@24238 - --- compiler/i8086/cpupi.pas | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/compiler/i8086/cpupi.pas b/compiler/i8086/cpupi.pas index b4f9acd318..f6fa9f7c6c 100644 --- a/compiler/i8086/cpupi.pas +++ b/compiler/i8086/cpupi.pas @@ -36,7 +36,6 @@ unit cpupi; procedure set_first_temp_offset;override; function calc_stackframe_size:longint;override; procedure generate_parameter_info;override; - procedure allocate_got_register(list: tasmlist);override; end; @@ -96,15 +95,6 @@ unit cpupi; para_stack_size := 0; end; - procedure ti8086procinfo.allocate_got_register(list: tasmlist); - begin - if (target_info.system in [system_i386_darwin,system_i386_iphonesim]) and - (cs_create_pic in current_settings.moduleswitches) then - begin - got := cg.getaddressregister(list); - end; - end; - begin cprocinfo:=ti8086procinfo; end.