*** empty log message ***

This commit is contained in:
florian 1998-04-07 14:45:53 +00:00
parent 3b4c0175e9
commit b80b4ccb06
3 changed files with 24 additions and 0 deletions

5
bugs/bug0126.pp Normal file
View File

@ -0,0 +1,5 @@
type
myarray = packed array[0..10] of longint;
begin
end.

17
bugs/bug0127.pp Normal file
View File

@ -0,0 +1,17 @@
unit test;
interface
procedure x;
implementation
procedure crash;
begin
x; { called with pascal calling conventions }
end;
procedure x;external;cdecl;
end.

View File

@ -171,3 +171,5 @@ bug0122.pp exit() gives a warning that the result is not set
bug0123.pp problem with intel assembler (shrd) bug0123.pp problem with intel assembler (shrd)
bug0124.pp problem with -Rintel switch and indexing (whatever the order) bug0124.pp problem with -Rintel switch and indexing (whatever the order)
bug0125.pp wrong colors with DOS CRT unit bug0125.pp wrong colors with DOS CRT unit
bug0126.pp packed array isn't allowed
bug0127.pp problem with cdecl in implementation part