* changed one typecast too many in r14180

git-svn-id: trunk@14183 -
This commit is contained in:
Jonas Maebe 2009-11-15 13:43:18 +00:00
parent 099ceb9574
commit b9f07ff1fb

View File

@ -18,7 +18,7 @@ if not caught then
writeln('Masking exceptions');
writeln(byte(SetExceptionMask([exDenormalized,exInvalidOp,exOverflow,exPrecision,exUnderflow,exZeroDivide]))); //Returns 61, as expected
writeln(Integer(SetExceptionMask([exDenormalized,exInvalidOp,exOverflow,exPrecision,exUnderflow,exZeroDivide]))); //Returns 61, as expected
writeln(integer(GetExceptionMask)); //Returns 4 - unexpected???
writeln(byte([exZeroDivide])); //Returns 4