+ strip leading zeros in numeric labels in iso/extended pascal mode also in label declarations, resolves #37323

git-svn-id: trunk@45764 -
This commit is contained in:
florian 2020-07-11 07:12:37 +00:00
parent 509cf3f1ae
commit f6f5cb45a3
3 changed files with 18 additions and 1 deletions

1
.gitattributes vendored
View File

@ -18350,6 +18350,7 @@ tests/webtbs/tw37261.pp svneol=native#text/pascal
tests/webtbs/tw37272a.pp svneol=native#text/pascal
tests/webtbs/tw37301.pp svneol=native#text/pascal
tests/webtbs/tw37322.pp svneol=native#text/pascal
tests/webtbs/tw37323.pp svneol=native#text/pascal
tests/webtbs/tw3742.pp svneol=native#text/plain
tests/webtbs/tw3751.pp svneol=native#text/plain
tests/webtbs/tw3758.pp svneol=native#text/plain

View File

@ -387,7 +387,14 @@ implementation
if token=_ID then
labelsym:=clabelsym.create(orgpattern)
else
labelsym:=clabelsym.create(pattern);
begin
{ strip leading 0's in iso mode }
if (([m_iso,m_extpas]*current_settings.modeswitches)<>[]) then
while pattern[1]='0' do
delete(pattern,1,1);
labelsym:=clabelsym.create(pattern);
end;
symtablestack.top.insert(labelsym);
if m_non_local_goto in current_settings.modeswitches then
begin

9
tests/webtbs/tw37323.pp Normal file
View File

@ -0,0 +1,9 @@
{ %OPT=-Miso -Sg }
program test;
label 0001;
begin
goto 1;
1:
end.