volatile: allow for assignments

This commit is contained in:
Jonas Maebe 2023-08-12 12:04:18 +02:00
parent f5280abe54
commit 13346a42bc
2 changed files with 8 additions and 1 deletions

View File

@ -1869,7 +1869,7 @@ implementation
begin
if ((valid_const in opts) and
(tinlinenode(hp).inlinenumber in [in_typeof_x])) or
(tinlinenode(hp).inlinenumber in [in_unaligned_x,in_aligned_x]) then
(tinlinenode(hp).inlinenumber in [in_unaligned_x,in_aligned_x,in_volatile_x]) then
result:=true
else
if report_errors then

7
tests/tbs/tb0706.pp Normal file
View File

@ -0,0 +1,7 @@
{ %norun }
var
l: longint;
begin
volatile(l) := 1;
end.