fpc/tests/webtbf/tw19463.pp
florian 93e53e1990 * allow also smaller values for code alignment parameters than the current one, resolves #19463
* limit code alignment parameters to power of 2 up to 256
* give an error for an invalid code alignment directive

git-svn-id: trunk@17659 -
2011-06-04 20:56:15 +00:00

25 lines
177 B
ObjectPascal

{ %fail }
{$CODEALIGN 3}
{$CODEALIGN PROC=3}
program test1;
var
v: integer = 1;
procedure A;
begin
Inc(v);
end;
procedure B;
begin
Dec(v);
end;
begin
A;
B;
end.