mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:38:19 +02:00
volatile: allow for assignments
This commit is contained in:
parent
f5280abe54
commit
13346a42bc
@ -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
7
tests/tbs/tb0706.pp
Normal file
@ -0,0 +1,7 @@
|
||||
{ %norun }
|
||||
|
||||
var
|
||||
l: longint;
|
||||
begin
|
||||
volatile(l) := 1;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user