| 694 | } |
| 695 | |
| 696 | const char* FPFastMathString(int mode) |
| 697 | { |
| 698 | switch (mode) { |
| 699 | case 0: return "NotNaN"; |
| 700 | case 1: return "NotInf"; |
| 701 | case 2: return "NSZ"; |
| 702 | case 3: return "AllowRecip"; |
| 703 | case 4: return "Fast"; |
| 704 | |
| 705 | default: return "Bad"; |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | const char* FPRoundingModeString(int mode) |
| 710 | { |
nothing calls this directly
no outgoing calls
no test coverage detected