From dd266f262c2fe3a4aaa35f7194e95234f61b32cd Mon Sep 17 00:00:00 2001 From: pierre Date: Tue, 8 Nov 2011 13:48:19 +0000 Subject: [PATCH] * Remove obsolete mips files git-svn-id: trunk@19606 - --- .gitattributes | 2 - compiler/mips/rmipsmot.inc | 75 -------------------------------------- compiler/mips/rmipsmri.inc | 75 -------------------------------------- compiler/utils/mkmpsreg.pp | 9 +---- 4 files changed, 2 insertions(+), 159 deletions(-) delete mode 100644 compiler/mips/rmipsmot.inc delete mode 100644 compiler/mips/rmipsmri.inc diff --git a/.gitattributes b/.gitattributes index 4d259beb73..a714098b76 100644 --- a/.gitattributes +++ b/.gitattributes @@ -266,8 +266,6 @@ compiler/mips/rmipsdwf.inc svneol=native#text/plain compiler/mips/rmipsgas.inc svneol=native#text/plain compiler/mips/rmipsgri.inc svneol=native#text/plain compiler/mips/rmipsgss.inc svneol=native#text/plain -compiler/mips/rmipsmot.inc svneol=native#text/plain -compiler/mips/rmipsmri.inc svneol=native#text/plain compiler/mips/rmipsnor.inc svneol=native#text/plain compiler/mips/rmipsnum.inc svneol=native#text/plain compiler/mips/rmipsrni.inc svneol=native#text/plain diff --git a/compiler/mips/rmipsmot.inc b/compiler/mips/rmipsmot.inc deleted file mode 100644 index 7f44888e61..0000000000 --- a/compiler/mips/rmipsmot.inc +++ /dev/null @@ -1,75 +0,0 @@ -{ don't edit, this file is generated from mipsreg.dat } -'INVALID', -'r0', -'r1', -'r2', -'r3', -'r4', -'r5', -'r6', -'r7', -'r8', -'r9', -'r10', -'r11', -'r12', -'r13', -'r14', -'r15', -'r16', -'r17', -'r18', -'r19', -'r20', -'r21', -'r22', -'r23', -'r24', -'r25', -'r26', -'r27', -'r28', -'r29', -'r30', -'r31', -'F0', -'F1', -'F2', -'F3', -'F4', -'F5', -'F6', -'F7', -'F8', -'F9', -'F10', -'F11', -'F12', -'F13', -'F14', -'F15', -'F16', -'F17', -'F18', -'F19', -'F20', -'F21', -'F22', -'F23', -'F24', -'F25', -'F26', -'F27', -'F28', -'F29', -'F30', -'F31', -'PC', -'HI', -'LO', -'CR', -'FCR0', -'FCR25', -'FCR26', -'FCR28', -'FCSR' diff --git a/compiler/mips/rmipsmri.inc b/compiler/mips/rmipsmri.inc deleted file mode 100644 index 68f2626c88..0000000000 --- a/compiler/mips/rmipsmri.inc +++ /dev/null @@ -1,75 +0,0 @@ -{ don't edit, this file is generated from mipsreg.dat } -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0 diff --git a/compiler/utils/mkmpsreg.pp b/compiler/utils/mkmpsreg.pp index ce7d03b53d..b3494a50c4 100644 --- a/compiler/utils/mkmpsreg.pp +++ b/compiler/utils/mkmpsreg.pp @@ -33,8 +33,7 @@ var s : string; stabs : array[0..max_regcount-1] of string[63]; regnumber_index, std_regname_index, - gas_regname_index, - mot_regname_index : array[0..max_regcount-1] of byte; + gas_regname_index : array[0..max_regcount-1] of byte; function tostr(l : longint) : string; @@ -244,7 +243,7 @@ procedure write_inc_files; var norfile,stdfile,supfile, numfile,stabfile,confile,gasfile,dwarffile, - rnifile,srifile,mrifile,grifile : text; + rnifile,srifile,grifile : text; first:boolean; begin @@ -260,7 +259,6 @@ begin openinc(rnifile,'rmipsrni.inc'); openinc(srifile,'rmipssri.inc'); openinc(grifile,'rmipsgri.inc'); - openinc(mrifile,'rmipsmri.inc'); first:=true; for i:=0 to regcount-1 do begin @@ -274,7 +272,6 @@ begin writeln(rnifile,','); writeln(srifile,','); writeln(grifile,','); - writeln(mrifile,','); end else first:=false; @@ -288,7 +285,6 @@ begin write(rnifile,regnumber_index[i]); write(srifile,std_regname_index[i]); write(grifile,gas_regname_index[i]); - write(mrifile,mot_regname_index[i]); end; write(norfile,regcount); close(confile); @@ -302,7 +298,6 @@ begin closeinc(rnifile); closeinc(srifile); closeinc(grifile); - closeinc(mrifile); writeln('Done!'); writeln(regcount,' registers procesed'); end;