/removefpchecks [+| -]
The default for this option is /removefpchecks-, which causes the compiler to check all floating point calculations for errors such as overflow or division by zero.
Specifying /removefpchecks or /removefpchecks+ prevents error checking and can make floating-point calculations faster. However, without error checking, incorrect results may be stored without raising an error if data type capacities are overflowed.
Compile test.vb
and turn off floating-point error checking:
vbc /removefpchecks+ test.vb
Visual Basic Compiler Options | /removeintchecks