* Remove obsolete mips files

git-svn-id: trunk@19606 -
This commit is contained in:
pierre 2011-11-08 13:48:19 +00:00
parent 2146d8a8ec
commit dd266f262c
4 changed files with 2 additions and 159 deletions

2
.gitattributes vendored
View File

@ -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

View File

@ -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'

View File

@ -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

View File

@ -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;