mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-01 09:00:32 +01:00
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 -
16 lines
133 B
ObjectPascal
16 lines
133 B
ObjectPascal
{ %norun }
|
|
{ %opt=-Sew }
|
|
|
|
{$r+}
|
|
{$warnings on}
|
|
|
|
const
|
|
MH_MAGIC = $feedface;
|
|
|
|
var
|
|
c: cardinal;
|
|
begin
|
|
c:= NToBE(MH_MAGIC);
|
|
end.
|
|
|