From 4fc05e6ec165cf81b4a94440716459ef316bca79 Mon Sep 17 00:00:00 2001 From: sergei Date: Tue, 9 Feb 2016 01:32:42 +0000 Subject: [PATCH] - MIPS: removed taicpu.delayslot_annulled, it was a copy-paste from SPARC code. git-svn-id: trunk@33073 - --- compiler/mips/aasmcpu.pas | 1 - compiler/mips/cpugas.pas | 2 -- 2 files changed, 3 deletions(-) diff --git a/compiler/mips/aasmcpu.pas b/compiler/mips/aasmcpu.pas index 08a63e7bc9..5d610745e1 100644 --- a/compiler/mips/aasmcpu.pas +++ b/compiler/mips/aasmcpu.pas @@ -40,7 +40,6 @@ const type { taicpu } taicpu = class(tai_cpu_abstract_sym) - delayslot_annulled: boolean; { conditinal opcode with ,a } constructor op_none(op: tasmop); constructor op_reg(op: tasmop; _op1: tregister); diff --git a/compiler/mips/cpugas.pas b/compiler/mips/cpugas.pas index 93ea844e1a..c110dc85e1 100644 --- a/compiler/mips/cpugas.pas +++ b/compiler/mips/cpugas.pas @@ -340,8 +340,6 @@ unit cpugas; if is_macro_instruction(taicpu(hp)) and TMIPSGNUAssembler(owner).nomacro then owner.writer.AsmWriteln(#9'.set'#9'macro'); s := #9 + gas_op2str[op] + cond2str[taicpu(hp).condition]; - if taicpu(hp).delayslot_annulled then - s := s + ',a'; if taicpu(hp).ops > 0 then begin s := s + #9 + getopstr(taicpu(hp).oper[0]^);