]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/arithexcept.qc
10476e67fc88bbb2fa37cba2d68a9d6487f73ca3
[xonotic/gmqcc.git] / tests / arithexcept.qc
1 const float huge = 340282346638528859811704183484516925440; // FLT_MAX
2
3 #ifdef DIVBYZERO
4 const float a = 1.0 / 0.0;
5 #endif
6
7 #ifdef OVERFLOW
8 const float a = huge * huge;
9 #endif
10
11 #ifdef UNDERFLOW
12 const float a = 1 / huge;
13 #endif