mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 11:29:36 +01:00
+ 285,286
This commit is contained in:
parent
656d4330cd
commit
429cc55711
13
bugs/bug0285.pp
Normal file
13
bugs/bug0285.pp
Normal file
@ -0,0 +1,13 @@
|
||||
{$asmmode intel}
|
||||
|
||||
TYPE something = RECORD big:LONGINT; small:BYTE; END;
|
||||
|
||||
FUNCTION typesize:INTEGER; ASSEMBLER;
|
||||
ASM
|
||||
MOV EAX, TYPE something
|
||||
END;
|
||||
|
||||
BEGIN
|
||||
writeln(typesize);
|
||||
END.
|
||||
|
||||
5
bugs/bug0286.pp
Normal file
5
bugs/bug0286.pp
Normal file
@ -0,0 +1,5 @@
|
||||
var
|
||||
c : char;
|
||||
begin
|
||||
c:=#$08d;
|
||||
end.
|
||||
@ -371,6 +371,7 @@ bug0275.pp too many warnings
|
||||
bug0277.pp typecasting with const not possible
|
||||
bug0279.pp crash with ansistring and new(^ansistring)
|
||||
bug0281.pp dup id checking with property is wrong
|
||||
bug0282.pp long mangledname problem with -Aas
|
||||
bug0283.pp wrong file position with dup id in other unit
|
||||
bug0284.pp bug in constant char comparison evaluation
|
||||
bug0285.pp Asm, TYPE not support in intel mode
|
||||
bug0286.pp #$08d not allowed as Char constant
|
||||
Loading…
Reference in New Issue
Block a user