+ bug0193

This commit is contained in:
Jonas Maebe 1998-12-16 14:27:56 +00:00
parent 75331d6648
commit b6c228b232
2 changed files with 16 additions and 1 deletions

14
bugs/bug0193.pp Normal file
View File

@ -0,0 +1,14 @@
{$Q+}
var i: integer;
b: byte;
begin
i := 32767;
i := i + 15;
b := 255;
b := b + 18;
b := 255;
b := b * 8;
b := 255;
b := b * 17
End.

View File

@ -255,4 +255,5 @@ bug0189.pp cant compare adresses of function variables !!
bug0190.pp can't have typecast for var params ?? bug0190.pp can't have typecast for var params ??
bug0191.pp missing vecn constant evaluation bug0191.pp missing vecn constant evaluation
bug0192.pp can't compare boolean result with true/false, because the bug0192.pp can't compare boolean result with true/false, because the
boolean result is already in the flags boolean result is already in the flags
bug0193.pp overflow checking for 8 and 16 bit operations wrong