mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 11:45:32 +02:00
* fixed -Sew warnings in agwat.pas
git-svn-id: branches/wasm@47991 -
This commit is contained in:
parent
5c4e4228f6
commit
e7cd823692
@ -865,6 +865,8 @@ implementation
|
|||||||
case hp.typ of
|
case hp.typ of
|
||||||
ait_importexport:
|
ait_importexport:
|
||||||
inc(cnt);
|
inc(cnt);
|
||||||
|
else
|
||||||
|
;
|
||||||
end;
|
end;
|
||||||
hp := tai_impexp(hp.Next);
|
hp := tai_impexp(hp.Next);
|
||||||
end;
|
end;
|
||||||
@ -884,6 +886,8 @@ implementation
|
|||||||
writer.AsmWrite(#9#9);
|
writer.AsmWrite(#9#9);
|
||||||
writer.AsmWriteLn(GetWasmName(x.intname));
|
writer.AsmWriteLn(GetWasmName(x.intname));
|
||||||
end;
|
end;
|
||||||
|
else
|
||||||
|
;
|
||||||
end;
|
end;
|
||||||
hp := tai_impexp(hp.Next);
|
hp := tai_impexp(hp.Next);
|
||||||
end;
|
end;
|
||||||
@ -901,12 +905,16 @@ implementation
|
|||||||
writer.AsmWrite('" (');
|
writer.AsmWrite('" (');
|
||||||
case x.symstype of
|
case x.symstype of
|
||||||
ie_Func: writer.AsmWrite('func');
|
ie_Func: writer.AsmWrite('func');
|
||||||
|
else
|
||||||
|
;
|
||||||
end;
|
end;
|
||||||
writer.AsmWrite(' ');
|
writer.AsmWrite(' ');
|
||||||
writer.AsmWrite(GetWasmName(x.intname));
|
writer.AsmWrite(GetWasmName(x.intname));
|
||||||
writer.AsmWrite('))');
|
writer.AsmWrite('))');
|
||||||
writer.AsmLn;
|
writer.AsmLn;
|
||||||
end;
|
end;
|
||||||
|
else
|
||||||
|
;
|
||||||
end;
|
end;
|
||||||
hp := tai_impexp(hp.Next);
|
hp := tai_impexp(hp.Next);
|
||||||
end;
|
end;
|
||||||
@ -1054,6 +1062,8 @@ implementation
|
|||||||
WriteConstString(tai_label(hp), tai_string(dt));
|
WriteConstString(tai_label(hp), tai_string(dt));
|
||||||
hp:=dt;
|
hp:=dt;
|
||||||
end;
|
end;
|
||||||
|
else
|
||||||
|
;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user