| 11 | #if SAFEINT_USE_INTRINSICS |
| 12 | |
| 13 | _CONSTEXPR14 std::int16_t CastInt() |
| 14 | { |
| 15 | const std::int16_t t1 = 2; |
| 16 | const std::int16_t u1 = -3; |
| 17 | std::int16_t r1 = 0; |
| 18 | if (!MultiplicationHelper< std::int16_t, std::int16_t, MultiplicationState_CastInt>::Multiply(t1, u1, r1)) |
| 19 | return 0; |
| 20 | |
| 21 | return r1; |
| 22 | } |
| 23 | |
| 24 | _CONSTEXPR14 std::uint16_t CastUint() |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected