compiler: remove unused variables (reduce hints)

git-svn-id: trunk@15093 -
This commit is contained in:
paul 2010-03-30 04:30:41 +00:00
parent 973d947d6c
commit 1ef53ca590
5 changed files with 6 additions and 10 deletions

View File

@ -391,8 +391,7 @@ end;
function TMessage.ClearVerbosity(nr:longint):boolean;
var
hp: pchar;
i, txtbegin: longint;
i: longint;
begin
result:=false;
i:=nr div 1000;

View File

@ -494,7 +494,6 @@ implementation
relpc : Boolean;
relextern : Boolean;
reltype : Integer;
spos : LongWord;
begin
s:=TMachoObjSection(p);

View File

@ -3347,7 +3347,6 @@ In case not, the value returned can be arbitrary.
m : longint;
mac : tmacro;
asciinr : string[6];
msgwritten,
iswidestring : boolean;
label
exit_label;
@ -3775,7 +3774,6 @@ In case not, the value returned can be arbitrary.
'''','#','^' :
begin
len:=0;
msgwritten:=false;
cstringpattern:='';
iswidestring:=false;
if c='^' then

View File

@ -179,12 +179,12 @@ var
maxinfolen,
code : byte;
insns : longint;
attsuffile,propfile,opfile,
attsuffile,{propfile,}opfile,
nopfile,attfile,
infile,insfile : text;
{ instruction fields }
skip : boolean;
last,
{last,}
ops : longint;
attopcode,
opcode,
@ -333,7 +333,7 @@ begin
{ codes }
skipspace;
j:=0;
last:=0;
(* last:=0;*)
if s[i] in ['\','0'..'9'] then
begin
while not(s[i] in [' ',#9]) do
@ -352,7 +352,7 @@ begin
end;
*)
codes:=codes+'#'+tostr(code);
last:=code;
(* last:=code;*)
inc(j);
end;
end

View File

@ -53,7 +53,7 @@ end;
Function AddPair(List : TStrings; Const NV : String) : Boolean;
Var
P,I : Integer;
P : Integer;
N,V : string;
begin