mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:07:56 +02:00
+ 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:
parent
509cf3f1ae
commit
f6f5cb45a3
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
@ -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
9
tests/webtbs/tw37323.pp
Normal file
@ -0,0 +1,9 @@
|
||||
{ %OPT=-Miso -Sg }
|
||||
program test;
|
||||
|
||||
label 0001;
|
||||
|
||||
begin
|
||||
goto 1;
|
||||
1:
|
||||
end.
|
Loading…
Reference in New Issue
Block a user