fpc/tests/test/tinlrange4.pp
Jonas Maebe 4fd670c6ec * fixed missing masking of values after shifting them during inline
evaluation
   o also only mask values when performing a constant evaluation of
     "0 shl/shr x" during inline evaluation (just like when evaluating other
     shl/shr operations)

git-svn-id: trunk@43497 -
2019-11-16 14:27:47 +00:00

16 lines
133 B
ObjectPascal

{ %norun }
{ %opt=-Sew }
{$r+}
{$warnings on}
const
MH_MAGIC = $feedface;
var
c: cardinal;
begin
c:= NToBE(MH_MAGIC);
end.